| 12345678910111213141516171819202122232425 |
- //
- // MORankHit.h
- //
- // Created by 青天 猫 on 2025/9/11
- // Copyright (c) 2025 __MyCompanyName__. All rights reserved.
- //
- #import <Foundation/Foundation.h>
- @interface MORankHit : NSObject <NSCoding, NSCopying>
- @property (nonatomic, strong) NSString *giftName;
- @property (nonatomic, strong) NSString *giftImg;
- @property (nonatomic, assign) double hitAmount;
- @property (nonatomic, strong) NSString *giftId;
- @property (nonatomic, assign) double giftCategory;
- @property (nonatomic, assign) double hitType;
- + (instancetype)modelObjectWithDictionary:(NSDictionary *)dict;
- - (instancetype)initWithDictionary:(NSDictionary *)dict;
- - (NSDictionary *)dictionaryRepresentation;
- @end
|