123456789101112131415161718192021222324252627282930313233 |
- //
- // TXLiveMessageChatBan.h
- // StudentDaya
- //
- // Created by 王智 on 2023/2/27.
- // Copyright © 2023 DayaMusic. All rights reserved.
- //
- #import "TXLiveMessageModel.h"
- NS_ASSUME_NONNULL_BEGIN
- @interface TXLiveMessageChatBan : TXLiveMessageModel
- /**
- 用户id
- */
- @property(nonatomic, copy, nonnull) NSString *userId;
- /**
- 用户名称
- */
- @property(nonatomic, copy, nonnull) NSString *userName;
- /**
- 是否禁止聊天 YES 禁止 NO 开启
- */
- @property(nonatomic, assign) BOOL chatBan;
- @end
- NS_ASSUME_NONNULL_END
|