Files
yinmeng-ios/xplan-ios/Base/MVP/Model/UserExpand.h

22 lines
554 B
C
Raw Normal View History

//
// UserExpand.h
// xplan-ios
//
// Created by zu on 2021/9/14.
//
2021-10-26 19:14:01 +08:00
#import "NSObject+MJExtension.h"
NS_ASSUME_NONNULL_BEGIN
2021-10-26 19:14:01 +08:00
@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