RCChatroomSeatsControl.h 535 B

123456789101112131415161718192021222324252627282930313233
  1. //
  2. // RCChatroomSeatsControl.h
  3. // StudentDaya
  4. //
  5. // Created by Kyle on 2022/2/21.
  6. // Copyright © 2022 DayaMusic. All rights reserved.
  7. //
  8. #import <RongIMLibCore/RongIMLibCore.h>
  9. NS_ASSUME_NONNULL_BEGIN
  10. @interface RCChatroomSeatsControl : RCMessageContent
  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 seatBan;
  23. @end
  24. NS_ASSUME_NONNULL_END