TXLiveMessageChatBan.h 526 B

123456789101112131415161718192021222324252627282930313233
  1. //
  2. // TXLiveMessageChatBan.h
  3. // StudentDaya
  4. //
  5. // Created by 王智 on 2023/2/27.
  6. // Copyright © 2023 DayaMusic. All rights reserved.
  7. //
  8. #import "TXLiveMessageModel.h"
  9. NS_ASSUME_NONNULL_BEGIN
  10. @interface TXLiveMessageChatBan : TXLiveMessageModel
  11. /**
  12. 用户id
  13. */
  14. @property(nonatomic, copy, nonnull) NSString *userId;
  15. /**
  16. 用户名称
  17. */
  18. @property(nonatomic, copy, nonnull) NSString *userName;
  19. /**
  20. 是否禁止聊天 YES 禁止 NO 开启
  21. */
  22. @property(nonatomic, assign) BOOL chatBan;
  23. @end
  24. NS_ASSUME_NONNULL_END