| 12345678910111213141516171819202122232425262728293031323334353637383940 |
- //
- // MOGiftWishBase.h
- //
- // Created by SuperCabbage on 2023/11/22
- // Copyright (c) 2023 __MyCompanyName__. All rights reserved.
- //
- #import <Foundation/Foundation.h>
- @class MOGiftInfo;
- @interface MOGiftWishBase : NSObject <NSCoding, NSCopying>
- /** 心愿单 - 完成奖励金豆数 */
- @property (nonatomic, assign) double reward;
- @property (nonatomic, assign) double star;
- @property (nonatomic, strong) NSString *id;
- @property (nonatomic, strong) NSArray *rewards;
- @property (nonatomic, strong) MOGiftInfo *giftInfo;
- @property (nonatomic, assign) double maxAmount;
- @property (nonatomic, strong) NSArray *helpList;
- /** 心愿单 - 数量 */
- @property (nonatomic, assign) double num;
- @property (nonatomic, assign) BOOL done;
- /** 心愿单 - 是否满足赠送条件 */
- @property (nonatomic, assign) BOOL lock;
- /** 心愿单 - 完成量 */
- @property (nonatomic, assign) double complete;
- /** 主播中心 - 礼物数量 */
- @property (nonatomic, assign) double count;
- /** 主播中心 - 价值金豆 */
- @property (nonatomic, assign) double goldenBean;
- + (instancetype)modelObjectWithDictionary:(NSDictionary *)dict;
- - (instancetype)initWithDictionary:(NSDictionary *)dict;
- - (NSDictionary *)dictionaryRepresentation;
- @end
|