123456789101112131415161718192021222324252627 |
- //
- // YMBlackListModel.h
- // MSYOUPAI
- //
- // Created by YoMi on 2024/2/21.
- // Copyright © 2024 MS. All rights reserved.
- //
- #import <Foundation/Foundation.h>
- NS_ASSUME_NONNULL_BEGIN
- @interface YMBlackListModel : NSObject
- @property (nonatomic, assign) NSInteger age;
- @property (nonatomic, copy) NSString *avatar;
- @property (nonatomic, copy) NSString *city;
- @property (nonatomic, copy) NSString *create_time;
- @property (nonatomic, assign) NSInteger gender;
- @property (nonatomic, copy) NSString *nickname;
- @property (nonatomic, copy) NSString *sign;
- @property (nonatomic, copy) NSString *usercode;
- @property (nonatomic, assign) NSInteger userid;
- @property (nonatomic, assign) NSInteger vip;
- @end
- NS_ASSUME_NONNULL_END
|