| 1234567891011121314151617181920212223242526 |
- //
- // MOGiftPackItems.h
- //
- // Created by SuperCabbage on 2024/9/10
- // Copyright (c) 2024 __MyCompanyName__. All rights reserved.
- //
- #import <Foundation/Foundation.h>
- @interface MOGiftPackItems : NSObject <NSCoding, NSCopying>
- @property (nonatomic, assign) double amount;
- @property (nonatomic, strong) NSString *icon;
- @property (nonatomic, assign) BOOL forever;
- /** 类型(1=钻石,2=道具,3=礼物) */
- @property (nonatomic, assign) double type;
- @property (nonatomic, strong) NSString *name;
- @property (nonatomic, strong) NSString *desc;
- + (instancetype)modelObjectWithDictionary:(NSDictionary *)dict;
- - (instancetype)initWithDictionary:(NSDictionary *)dict;
- - (NSDictionary *)dictionaryRepresentation;
- @end
|