12345678910111213141516171819202122232425 |
- //
- // YMSearchUserModel.h
- // MSYOUPAI
- //
- // Created by YoMi on 2024/3/18.
- // Copyright © 2024 MS. All rights reserved.
- //
- #import <Foundation/Foundation.h>
- NS_ASSUME_NONNULL_BEGIN
- @interface YMSearchUserModel : NSObject
- @property (nonatomic, assign) NSInteger age;
- @property (nonatomic, copy) NSString *avatar;
- @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, copy) NSString *nickname;
- @property (nonatomic, copy) NSString *occupation;
- @property (nonatomic, assign) NSInteger user_id;
- @end
- NS_ASSUME_NONNULL_END
|