YMInvitingPersonsModel.h 641 B

123456789101112131415161718192021222324
  1. //
  2. // YMInvitingPersonsModel.h
  3. // MSYOUPAI
  4. //
  5. // Created by YoMi on 2024/3/15.
  6. // Copyright © 2024 MS. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. NS_ASSUME_NONNULL_BEGIN
  10. @interface YMInvitingPersonsModel : NSObject
  11. @property (nonatomic, copy) NSString *add_time;
  12. @property (nonatomic, assign) NSInteger age;
  13. @property (nonatomic, copy) NSString *avatar;
  14. @property (nonatomic, copy) NSString *city;
  15. @property (nonatomic, assign) NSInteger gender;
  16. @property (nonatomic, copy) NSString *nickname;
  17. @property (nonatomic, copy) NSString *usercode;
  18. @property (nonatomic, assign) NSInteger userid;
  19. @end
  20. NS_ASSUME_NONNULL_END