MOReceivingUserItems.h 900 B

123456789101112131415161718192021222324252627282930
  1. //
  2. // MOReceivingUserItems.h
  3. //
  4. // Created by SuperCabbage on 2024/6/19
  5. // Copyright (c) 2024 __MyCompanyName__. All rights reserved.
  6. //
  7. #import <Foundation/Foundation.h>
  8. @interface MOReceivingUserItems : NSObject <NSCoding, NSCopying>
  9. @property (nonatomic, assign) double amount;
  10. @property (nonatomic, strong) NSString *userId;
  11. @property (nonatomic, strong) NSString *userNickname;
  12. @property (nonatomic, assign) double receivedTime;
  13. @property (nonatomic, strong) NSString *userAvatar;
  14. @property (nonatomic, assign) double seq;
  15. @property (nonatomic, assign) BOOL received;
  16. @property (nonatomic, assign) BOOL largest;
  17. @property (nonatomic, strong) NSString *headdress;
  18. @property (nonatomic, assign) BOOL headdressAnno;
  19. + (instancetype)modelObjectWithDictionary:(NSDictionary *)dict;
  20. - (instancetype)initWithDictionary:(NSDictionary *)dict;
  21. - (NSDictionary *)dictionaryRepresentation;
  22. @end