| 1234567891011121314151617181920212223242526 |
- //
- // MOReceivingBaseData.h
- //
- // Created by SuperCabbage on 2024/6/19
- // Copyright (c) 2024 __MyCompanyName__. All rights reserved.
- //
- #import <Foundation/Foundation.h>
- @class MOReceivingInfo;
- @interface MOReceivingBaseData : NSObject <NSCoding, NSCopying>
- @property (nonatomic, assign) double receivedAmount;
- @property (nonatomic, strong) NSString *next;
- @property (nonatomic, assign) double walletDiamonds;
- @property (nonatomic, strong) MOReceivingInfo *receivingInfo;
- @property (nonatomic, assign) BOOL firstTime;
- @property (nonatomic, assign) double lastReceivedNum;
- + (instancetype)modelObjectWithDictionary:(NSDictionary *)dict;
- - (instancetype)initWithDictionary:(NSDictionary *)dict;
- - (NSDictionary *)dictionaryRepresentation;
- @end
|