33 lines
765 B
Objective-C
33 lines
765 B
Objective-C
//
|
|
// BravoGiftWinningFlagView.h
|
|
// YuMi
|
|
//
|
|
// Created by P on 2025/3/25.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
@class AttachmentModel;
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@interface BravoGiftWinningFlagViewModel : PIBaseModel
|
|
|
|
@property (nonatomic, assign) NSInteger uid;
|
|
@property (nonatomic, copy) NSArray *receiverUidList;
|
|
@property (nonatomic, assign) NSInteger roomUid;
|
|
@property (nonatomic, assign) NSInteger roomId;
|
|
@property (nonatomic, assign) CGFloat receiverProfit;
|
|
@property (nonatomic, copy) NSDictionary *tip;
|
|
|
|
@end
|
|
|
|
|
|
@interface BravoGiftWinningFlagView : UIView
|
|
|
|
+ (BravoGiftWinningFlagViewModel *)display:(UIView *)superView
|
|
with:(AttachmentModel *)attachment
|
|
roomID:(NSInteger)roomID
|
|
uID:(NSString *)UID;
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|