CNLiveNotSeeController.h
511 Bytes
//
// CNLiveNotSeeController.h
// CNLiveSettingModule
//
// Created by CNLive-zxw on 2019/4/22.
// Copyright © 2019 cnlive. All rights reserved.
//
// 不看他/不让他看
#import "CNCommonViewController.h"
NS_ASSUME_NONNULL_BEGIN
typedef NS_ENUM(NSUInteger, CNNotSeeType) {
CNTypeNoLetHimSee,
CNTypeNoSeeHim
};
@interface CNLiveNotSeeController : CNCommonViewController
@property (nonatomic, copy) NSString *name;
@property (nonatomic, assign) CNNotSeeType type;
@end
NS_ASSUME_NONNULL_END