MOGiftListBaseData.h 771 B

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