| 123456789101112131415161718192021222324252627282930 |
- //
- // MOReceivingUserItems.h
- //
- // Created by SuperCabbage on 2024/6/19
- // Copyright (c) 2024 __MyCompanyName__. All rights reserved.
- //
- #import <Foundation/Foundation.h>
- @interface MOReceivingUserItems : NSObject <NSCoding, NSCopying>
- @property (nonatomic, assign) double amount;
- @property (nonatomic, strong) NSString *userId;
- @property (nonatomic, strong) NSString *userNickname;
- @property (nonatomic, assign) double receivedTime;
- @property (nonatomic, strong) NSString *userAvatar;
- @property (nonatomic, assign) double seq;
- @property (nonatomic, assign) BOOL received;
- @property (nonatomic, assign) BOOL largest;
- @property (nonatomic, strong) NSString *headdress;
- @property (nonatomic, assign) BOOL headdressAnno;
- + (instancetype)modelObjectWithDictionary:(NSDictionary *)dict;
- - (instancetype)initWithDictionary:(NSDictionary *)dict;
- - (NSDictionary *)dictionaryRepresentation;
- @end
|