KSLiveChatroomUserQuit.h 431 B

123456789101112131415161718192021222324252627
  1. //
  2. // KSLiveChatroomUserQuit.h
  3. // KulexiuForTeacher
  4. //
  5. // Created by Kyle on 2022/3/30.
  6. //
  7. #import <RongIMLibCore/RongIMLibCore.h>
  8. NS_ASSUME_NONNULL_BEGIN
  9. /// 观众未调用leave退出房间
  10. @interface KSLiveChatroomUserQuit : RCMessageContent
  11. /**
  12. 用户 Id
  13. */
  14. @property(nonatomic, copy, nonnull) NSString *userId;
  15. /**
  16. 用户名称
  17. */
  18. @property(nonatomic, copy, nonnull) NSString *userName;
  19. @end
  20. NS_ASSUME_NONNULL_END