27 lines
644 B
Objective-C
27 lines
644 B
Objective-C
#import <Foundation/Foundation.h>
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@interface BravoGiftTipInfoModel : NSObject
|
|
|
|
@property (nonatomic, copy) NSString *times;
|
|
@property (nonatomic, copy) NSString *coins;
|
|
@property (nonatomic, assign) NSInteger level;
|
|
|
|
@end
|
|
|
|
@interface BravoGiftTipModel : NSObject
|
|
|
|
@property (nonatomic, assign) NSInteger roomUid;
|
|
@property (nonatomic, assign) NSInteger roomId;
|
|
@property (nonatomic, assign) NSInteger uid;
|
|
@property (nonatomic, strong) NSArray<NSNumber *> *receiverUidList;
|
|
@property (nonatomic, copy) NSString *receiverProfit;
|
|
@property (nonatomic, strong) BravoGiftTipInfoModel *tip;
|
|
|
|
@end
|
|
|
|
|
|
|
|
NS_ASSUME_NONNULL_END
|