MOReceivingBaseData.h 753 B

1234567891011121314151617181920212223242526
  1. //
  2. // MOReceivingBaseData.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. @class MOReceivingInfo;
  9. @interface MOReceivingBaseData : NSObject <NSCoding, NSCopying>
  10. @property (nonatomic, assign) double receivedAmount;
  11. @property (nonatomic, strong) NSString *next;
  12. @property (nonatomic, assign) double walletDiamonds;
  13. @property (nonatomic, strong) MOReceivingInfo *receivingInfo;
  14. @property (nonatomic, assign) BOOL firstTime;
  15. @property (nonatomic, assign) double lastReceivedNum;
  16. + (instancetype)modelObjectWithDictionary:(NSDictionary *)dict;
  17. - (instancetype)initWithDictionary:(NSDictionary *)dict;
  18. - (NSDictionary *)dictionaryRepresentation;
  19. @end