30 lines
687 B
Objective-C
30 lines
687 B
Objective-C
//
|
|
// RechargeUserModel.h
|
|
// YuMi
|
|
//
|
|
// Created by P on 2024/12/30.
|
|
//
|
|
|
|
#import "PIBaseModel.h"
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@interface RechargeUserModel : PIBaseModel
|
|
|
|
@property(nonatomic, copy) NSString *avatar;
|
|
@property(nonatomic, copy) NSString *erbanNo;
|
|
@property(nonatomic, assign) NSInteger giveGold;
|
|
@property(nonatomic, copy) NSString *id;
|
|
@property(nonatomic, assign) BOOL isOnline;
|
|
@property(nonatomic, copy) NSString *nick;
|
|
@property(nonatomic, assign) NSInteger roomId;
|
|
@property(nonatomic, assign) NSInteger starLevel;
|
|
@property(nonatomic, assign) NSInteger type;
|
|
@property(nonatomic, assign) NSInteger uid;
|
|
|
|
+ (RechargeUserModel *)testModel;
|
|
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|