31 lines
567 B
Objective-C
31 lines
567 B
Objective-C
//
|
|
// SessionSettingModel.h
|
|
// YUMI
|
|
//
|
|
// Created by YUMI on 2023/1/18.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
typedef NS_ENUM(NSInteger, SessionSettingType) {
|
|
///置顶
|
|
SessionSettingType_Top,
|
|
///加入黑名单
|
|
SessionSettingType_black,
|
|
///举报
|
|
SessionSettingType_report
|
|
};
|
|
|
|
@interface SessionSettingModel : PIBaseModel
|
|
///显示标题
|
|
@property (nonatomic,copy) NSString *title;
|
|
///类型
|
|
@property (nonatomic,assign) SessionSettingType settingType;
|
|
///状态
|
|
@property (nonatomic,assign) BOOL state;
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|