24 lines
510 B
Objective-C
24 lines
510 B
Objective-C
//
|
|
// XPWishGiftCreateItemViewController.h
|
|
// xplan-ios
|
|
//
|
|
// Created by 冯硕 on 2022/10/18.
|
|
//
|
|
|
|
#import "MvpViewController.h"
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
@class WishGiftInfoModel;
|
|
@interface XPWishGiftCreateItemViewController : MvpViewController
|
|
///房主的uid
|
|
@property (nonatomic,strong) NSString *roomUid;
|
|
|
|
///需要修改的礼物信息
|
|
@property (nonatomic,strong) WishGiftInfoModel *modifiGiftInfo;
|
|
|
|
///创建完成
|
|
@property (nonatomic,copy) void(^Dismiss)(BOOL finish);
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|