KSLiveChatroomEnter.h 388 B

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