MORankHit.h 684 B

12345678910111213141516171819202122232425
  1. //
  2. // MORankHit.h
  3. //
  4. // Created by 青天 猫 on 2025/9/11
  5. // Copyright (c) 2025 __MyCompanyName__. All rights reserved.
  6. //
  7. #import <Foundation/Foundation.h>
  8. @interface MORankHit : NSObject <NSCoding, NSCopying>
  9. @property (nonatomic, strong) NSString *giftName;
  10. @property (nonatomic, strong) NSString *giftImg;
  11. @property (nonatomic, assign) double hitAmount;
  12. @property (nonatomic, strong) NSString *giftId;
  13. @property (nonatomic, assign) double giftCategory;
  14. @property (nonatomic, assign) double hitType;
  15. + (instancetype)modelObjectWithDictionary:(NSDictionary *)dict;
  16. - (instancetype)initWithDictionary:(NSDictionary *)dict;
  17. - (NSDictionary *)dictionaryRepresentation;
  18. @end