47 lines
1.5 KiB
Objective-C
Executable File
47 lines
1.5 KiB
Objective-C
Executable File
//
|
|
// SPMineModel.h
|
|
// SweetParty
|
|
//
|
|
// Created by bj_szd on 2022/6/2.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@interface SPMineModel : NSObject
|
|
|
|
@property(nonatomic, copy) NSString *head_pic;
|
|
@property(nonatomic, copy) NSString *nick_name;
|
|
@property(nonatomic, assign) NSInteger sex;
|
|
@property(nonatomic, copy) NSString *uid;
|
|
@property(nonatomic, copy) NSString *special_uid;
|
|
@property(nonatomic, copy) NSString *user_room_rid;
|
|
@property(nonatomic, copy) NSString *follow_num;
|
|
@property(nonatomic, copy) NSString *fans_num;
|
|
@property(nonatomic, copy) NSString *collect_room_num;
|
|
@property(nonatomic, copy) NSString *cp_num;
|
|
@property(nonatomic, copy) NSString *autograph;
|
|
@property(nonatomic, copy) NSString *birthday;
|
|
@property(nonatomic, copy) NSString *hobby;
|
|
@property(nonatomic, copy) NSString *contribution_level_image;
|
|
@property(nonatomic, copy) NSString *charm_level_image;
|
|
@property(nonatomic, copy) NSString *nobility_image;
|
|
|
|
@property(nonatomic, copy) NSString *reg_code;
|
|
@property(nonatomic, copy) NSString *reg_url;
|
|
|
|
@property(nonatomic, assign) NSInteger is_open_verify;//防顶号1开 2关
|
|
|
|
@property(nonatomic, copy) NSString *guild_id;
|
|
|
|
@property (nonatomic, assign) NSInteger is_room_hiding;//1 隐身进房 2 否
|
|
@property (nonatomic, assign) NSInteger is_teenager;//青少年模式 1已开启
|
|
@property (nonatomic, assign) NSInteger is_open_address;//是否开启位置信息 1是2否
|
|
|
|
@property (nonatomic, assign) NSInteger vid;//会员ID
|
|
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|