22 lines
546 B
Objective-C
22 lines
546 B
Objective-C
//
|
|
// UserExpand.h
|
|
// xplan-ios
|
|
//
|
|
// Created by zu on 2021/9/14.
|
|
//
|
|
|
|
#import "BaseObject.h"
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@interface UserExpand : BaseObject
|
|
@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
|