123456789101112131415161718192021222324 |
- //
- // YMInvitingPersonsModel.h
- // MSYOUPAI
- //
- // Created by YoMi on 2024/3/15.
- // Copyright © 2024 MS. All rights reserved.
- //
- #import <Foundation/Foundation.h>
- NS_ASSUME_NONNULL_BEGIN
- @interface YMInvitingPersonsModel : NSObject
- @property (nonatomic, copy) NSString *add_time;
- @property (nonatomic, assign) NSInteger age;
- @property (nonatomic, copy) NSString *avatar;
- @property (nonatomic, copy) NSString *city;
- @property (nonatomic, assign) NSInteger gender;
- @property (nonatomic, copy) NSString *nickname;
- @property (nonatomic, copy) NSString *usercode;
- @property (nonatomic, assign) NSInteger userid;
- @end
- NS_ASSUME_NONNULL_END
|