18 lines
326 B
Objective-C
18 lines
326 B
Objective-C
//
|
|
// TapUserCenterEntry.h
|
|
// TapBootstrapSDK
|
|
//
|
|
// Created by Bottle K on 2021/2/23.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@interface TapUserCenterEntry : NSObject
|
|
@property (nonatomic, assign) BOOL isMomentEnabled;
|
|
@property (nonatomic, assign) BOOL isFriendEnabled;
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|