25 lines
606 B
Objective-C
25 lines
606 B
Objective-C
//
|
|
// MSSessionPublicChatHallTopModel.h
|
|
// YuMi
|
|
//
|
|
// Created by duoban on 2024/5/7.
|
|
//
|
|
|
|
#import "PIBaseModel.h"
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@interface MSSessionPublicChatHallTopModel : PIBaseModel
|
|
@property(nonatomic,copy) NSString *uid;
|
|
@property(nonatomic,copy) NSString *content;
|
|
@property(nonatomic,assign) BOOL isTop;
|
|
@property(nonatomic,copy) NSString *partitionId;
|
|
@property(nonatomic,copy) NSString *nick;
|
|
@property(nonatomic,assign) NSInteger endTime;
|
|
@property(nonatomic,assign) NSInteger startTime;
|
|
//0 有效 1 过期
|
|
@property(nonatomic,assign) int recordStatus;
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|