54 lines
1.8 KiB
Objective-C
54 lines
1.8 KiB
Objective-C
//
|
|
// PIBaseAnimationViewModel.h
|
|
// YuMi
|
|
//
|
|
// Created by duoban on 2023/7/11.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
typedef enum : NSUInteger {
|
|
GiftBannerType_Lucky,///福袋
|
|
GiftBannerType_Love,///寻爱之旅
|
|
GiftBannerType_Nobleman,///VIP
|
|
GiftBannerType_kitchen,///厨房
|
|
GiftBannerType_AnchorHour,///个播小时榜
|
|
GiftBannerType_LicneseHour,///牌照房小时榜
|
|
GiftBannerType_Fairy,///夺宝精灵
|
|
GiftBannerType_Tarrow,//塔罗
|
|
GiftBannerType_Common_H5,//通用h5
|
|
GiftBannerType_Magic_House,//魔法屋
|
|
GiftBannerType_General_Floating_Screen,///通用飘屏
|
|
} GiftBannerType;
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@interface PIBaseAnimationViewModel : PIBaseModel
|
|
@property (nonatomic,assign) int first;
|
|
@property (nonatomic,assign) int second;
|
|
|
|
@property(nonatomic, copy)NSString *nick;
|
|
@property(nonatomic, copy)NSString *giftName;
|
|
@property(nonatomic, copy) NSString *giftNum;
|
|
@property (nonatomic,copy) NSString *luckyBagName;
|
|
@property (nonatomic,copy) NSString *roomTitle;
|
|
@property (nonatomic,assign) NSInteger uid;
|
|
@property (nonatomic,copy) NSString *roomUid;
|
|
@property (nonatomic,copy) NSString *goldPrice;
|
|
@property (nonatomic,assign) BOOL isInRoomVisable;
|
|
@property(nonatomic,assign) GiftBannerType type;
|
|
@property (nonatomic,copy) NSDictionary *data;
|
|
|
|
@property (nonatomic,copy) NSString *skipUrl;
|
|
@property (nonatomic,copy) NSString *itemId;
|
|
@property (nonatomic,copy) NSString *itemMultiple;
|
|
@property (nonatomic,copy) NSString *diamonds;
|
|
@property (nonatomic,copy) NSString * bannerId;
|
|
@property(nonatomic,copy) NSString *drawGoldNum;
|
|
@property(nonatomic,copy) NSString *content;
|
|
///福袋图片
|
|
@property(nonatomic,copy) NSString *luckyBagGiftPic;
|
|
///礼物图片
|
|
@property(nonatomic,copy) NSString *giftPic;
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|