33 lines
765 B
C
33 lines
765 B
C
![]() |
//
|
||
|
// BroveGiftWinningFlagView.h
|
||
|
// YuMi
|
||
|
//
|
||
|
// Created by P on 2025/3/25.
|
||
|
//
|
||
|
|
||
|
#import <UIKit/UIKit.h>
|
||
|
@class AttachmentModel;
|
||
|
NS_ASSUME_NONNULL_BEGIN
|
||
|
|
||
|
@interface BroveGiftWinningFlagViewModel : 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 BroveGiftWinningFlagView : UIView
|
||
|
|
||
|
+ (BroveGiftWinningFlagViewModel *)display:(UIView *)superView
|
||
|
with:(AttachmentModel *)attachment
|
||
|
roomID:(NSInteger)roomID
|
||
|
uID:(NSString *)UID;
|
||
|
@end
|
||
|
|
||
|
NS_ASSUME_NONNULL_END
|