33 lines
975 B
C
33 lines
975 B
C
|
|
//
|
||
|
|
// userNearbyModel.h
|
||
|
|
// TreeHole
|
||
|
|
//
|
||
|
|
// Created by 郑创权 on 2022/10/6.
|
||
|
|
//
|
||
|
|
|
||
|
|
#import <Foundation/Foundation.h>
|
||
|
|
|
||
|
|
NS_ASSUME_NONNULL_BEGIN
|
||
|
|
|
||
|
|
@interface userNearbyModel : NSObject
|
||
|
|
|
||
|
|
@property(nonatomic, strong)NSString* avatar;
|
||
|
|
@property(nonatomic, strong)NSString* nearbyId;
|
||
|
|
@property(nonatomic, strong)NSString* introduction;
|
||
|
|
@property(nonatomic, strong)NSString* nickname;
|
||
|
|
@property(nonatomic, strong)NSString* phone;
|
||
|
|
@property(nonatomic, strong)NSString* user_age;
|
||
|
|
@property(nonatomic, strong)NSString* user_create_duration;
|
||
|
|
@property(nonatomic, strong)NSString* user_distance;
|
||
|
|
@property(nonatomic, strong)NSString* user_is_new;
|
||
|
|
@property(nonatomic, strong)NSString* user_local;
|
||
|
|
@property(nonatomic, strong)NSString* user_online;
|
||
|
|
@property(nonatomic, strong)NSString* user_open_duration;
|
||
|
|
@property(nonatomic, strong)NSString* user_photo;
|
||
|
|
@property(nonatomic, strong)NSString* user_vip_kind;
|
||
|
|
@property(nonatomic, strong)NSString* gender_str;
|
||
|
|
|
||
|
|
@end
|
||
|
|
|
||
|
|
NS_ASSUME_NONNULL_END
|