| 1234567891011121314151617181920212223 |
- //
- // MOUserGift.h
- //
- // Created by 青天 猫 on 2025/6/9
- // Copyright (c) 2025 __MyCompanyName__. All rights reserved.
- //
- #import <Foundation/Foundation.h>
- @interface MOUserGift : NSObject <NSCoding, NSCopying>
- @property (nonatomic, strong) NSString *image;
- @property (nonatomic, strong) NSString *name;
- @property (nonatomic, assign) NSInteger type;
- @property (nonatomic, assign) NSInteger amount;
- + (instancetype)modelObjectWithDictionary:(NSDictionary *)dict;
- - (instancetype)initWithDictionary:(NSDictionary *)dict;
- - (NSDictionary *)dictionaryRepresentation;
- @end
|