MOSignPrizes.h 673 B

12345678910111213141516171819202122232425
  1. //
  2. // MOSignPrizes.h
  3. //
  4. // Created by SuperCabbage on 2024/5/31
  5. // Copyright (c) 2024 __MyCompanyName__. All rights reserved.
  6. //
  7. #import <Foundation/Foundation.h>
  8. @interface MOSignPrizes : NSObject <NSCoding, NSCopying>
  9. @property (nonatomic, assign) double amount;
  10. @property (nonatomic, strong) NSString *icon;
  11. @property (nonatomic, assign) double type;
  12. @property (nonatomic, strong) NSString *name;
  13. /** TAG 标签.(0就是没有 1=first,2=value) */
  14. @property (nonatomic, assign) double tag;
  15. + (instancetype)modelObjectWithDictionary:(NSDictionary *)dict;
  16. - (instancetype)initWithDictionary:(NSDictionary *)dict;
  17. - (NSDictionary *)dictionaryRepresentation;
  18. @end