| 1234567891011121314151617181920212223242526 |
- //
- // MOBaseResData.h
- //
- // Created by SuperCabbage on 2025/1/10
- // Copyright (c) 2025 __MyCompanyName__. All rights reserved.
- //
- #import <Foundation/Foundation.h>
- @class MOBaseCursor, MOBaseInterrupt;
- @interface MOBaseResData : NSObject <NSCoding, NSCopying>
- @property (nonatomic, strong) NSArray *effect;//礼物资源
- @property (nonatomic, strong) NSArray *baseVips;//vip
- @property (nonatomic, strong) NSArray *levels;//level
- @property (nonatomic, strong) NSArray *storeInfo;//勋章
- @property (nonatomic, strong) MOBaseCursor *baseCursor;
- @property (nonatomic, strong) MOBaseInterrupt *baseInterrupt;
- @property (nonatomic, strong) NSArray *props;//道具
- + (instancetype)modelObjectWithDictionary:(NSDictionary *)dict;
- - (instancetype)initWithDictionary:(NSDictionary *)dict;
- - (NSDictionary *)dictionaryRepresentation;
- @end
|