| 12345678910111213141516171819202122232425 |
- //
- // MOGiftListBaseData.h
- //
- // Created by SuperCabbage on 2023/11/24
- // Copyright (c) 2023 __MyCompanyName__. All rights reserved.
- //
- #import <Foundation/Foundation.h>
- @interface MOGiftListBaseData : NSObject <NSCoding, NSCopying>
- @property (nonatomic, strong) NSArray *giftlist;
- @property (nonatomic, strong) NSString *next;
- @property (nonatomic, assign) double giftRedCount;//背包礼物 红点 ,临期礼物数量
- @property (nonatomic, assign) double propRedCount;//背包道具。红点 新获得
- @property (nonatomic, assign) double propNearExpiryPropCount;//道具过期数量
- + (instancetype)modelObjectWithDictionary:(NSDictionary *)dict;
- - (instancetype)initWithDictionary:(NSDictionary *)dict;
- - (NSDictionary *)dictionaryRepresentation;
- @end
|