123456789101112131415161718192021222324252627282930313233343536373839 |
- //
- // YMRelationModel.h
- // MSYOUPAI
- //
- // Created by YoMi on 2024/2/17.
- // Copyright © 2024 MS. All rights reserved.
- //
- #import <Foundation/Foundation.h>
- NS_ASSUME_NONNULL_BEGIN
- @interface YMRelationModel : NSObject
- @property (nonatomic, copy) NSString *add_time;
- @property (nonatomic, assign) NSInteger age;
- @property (nonatomic, copy) NSString *avatar;
- @property (nonatomic, copy) NSString *avatar_frame;
- @property (nonatomic, copy) NSString *city;
- @property (nonatomic, assign) NSInteger gender;
- @property (nonatomic, copy) NSString *height;
- @property (nonatomic, assign) BOOL is_beckon;
- @property (nonatomic, copy) NSString *is_beckon_text;
- @property (nonatomic, assign) NSInteger is_fans;
- @property (nonatomic, assign) NSInteger is_follow;
- @property (nonatomic, assign) NSInteger is_watch;
- @property (nonatomic, copy) NSString *nickname;
- @property (nonatomic, copy) NSString *occupation;
- @property (nonatomic, copy) NSString *sign;
- @property (nonatomic, copy) NSString *usercode;
- @property (nonatomic, assign) NSInteger userid;
- @property (nonatomic, assign) NSInteger vip;
- @property (nonatomic, copy) NSString *vip_icon;
- @property (nonatomic, copy) NSString *visitor_text;
- @property (nonatomic, copy) NSString *weight;
- @end
- NS_ASSUME_NONNULL_END
|