MOBaseResData.h 839 B

1234567891011121314151617181920212223242526
  1. //
  2. // MOBaseResData.h
  3. //
  4. // Created by SuperCabbage on 2025/1/10
  5. // Copyright (c) 2025 __MyCompanyName__. All rights reserved.
  6. //
  7. #import <Foundation/Foundation.h>
  8. @class MOBaseCursor, MOBaseInterrupt;
  9. @interface MOBaseResData : NSObject <NSCoding, NSCopying>
  10. @property (nonatomic, strong) NSArray *effect;//礼物资源
  11. @property (nonatomic, strong) NSArray *baseVips;//vip
  12. @property (nonatomic, strong) NSArray *levels;//level
  13. @property (nonatomic, strong) NSArray *storeInfo;//勋章
  14. @property (nonatomic, strong) MOBaseCursor *baseCursor;
  15. @property (nonatomic, strong) MOBaseInterrupt *baseInterrupt;
  16. @property (nonatomic, strong) NSArray *props;//道具
  17. + (instancetype)modelObjectWithDictionary:(NSDictionary *)dict;
  18. - (instancetype)initWithDictionary:(NSDictionary *)dict;
  19. - (NSDictionary *)dictionaryRepresentation;
  20. @end