Files
yinmeng-ios/xplan-ios/Base/MVP/Model/UserExpand.h
2021-10-27 21:40:10 +08:00

22 lines
554 B
Objective-C

//
// UserExpand.h
// xplan-ios
//
// Created by zu on 2021/9/14.
//
#import "NSObject+MJExtension.h"
NS_ASSUME_NONNULL_BEGIN
@interface UserExpand : NSObject
@property (nonatomic , assign) NSInteger id;
@property (nonatomic , assign) BOOL showLocation;
@property (nonatomic , assign) NSInteger uid;
@property (nonatomic , assign) BOOL showAge;
@property (nonatomic , assign) BOOL matchChat;
@property (nonatomic , assign) BOOL sysMsgNotify;
@end
NS_ASSUME_NONNULL_END