54 lines
1.1 KiB
Objective-C
54 lines
1.1 KiB
Objective-C
//
|
|
// YMRoomSettingItemModel.h
|
|
// YUMI
|
|
//
|
|
// Created by YUMI on 2021/12/27.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
typedef NS_ENUM(NSInteger, RoomSettingItemType) {
|
|
///房间标题
|
|
RoomSettingItemType_Title = 1,
|
|
///房间上锁
|
|
RoomSettingItemType_Lock,
|
|
///房间密码
|
|
RoomSettingItemType_Pwd,
|
|
///房间分类
|
|
RoomSettingItemType_Class,
|
|
///房间标签
|
|
RoomSettingItemType_Tag,
|
|
///管理员
|
|
RoomSettingItemType_Manager_List,
|
|
///黑名单
|
|
RoomSettingItemType_Black_List,
|
|
///礼物特效
|
|
RoomSettingItemType_Gift_Effect,
|
|
///公屏显示
|
|
RoomSettingItemType_Message_Screen,
|
|
///排麦
|
|
RoomSettingItemType_Arrange_Mic,
|
|
///离开模式
|
|
RoomSettingItemType_Leave_Model,
|
|
///关闭礼物值
|
|
RoomSettingItemType_Gift_Value_Model,
|
|
///主题
|
|
RoomSettingItemType_Theme ,
|
|
};
|
|
|
|
@interface XPRoomSettingItemModel : PIBaseModel
|
|
///标题
|
|
@property (nonatomic,copy)NSString *title;
|
|
///副标题
|
|
@property (nonatomic,copy) NSString *subTitle;
|
|
///开启的状态
|
|
@property (nonatomic,assign) BOOL switchState;
|
|
///类型
|
|
@property (nonatomic,assign) RoomSettingItemType type;
|
|
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|