KSChatLiveMessage.h 481 B

12345678910111213141516171819202122232425
  1. //
  2. // KSChatLiveMessage.h
  3. // KulexiuForTeacher
  4. //
  5. // Created by 王智 on 2022/6/8.
  6. //
  7. #import <RongIMLibCore/RongIMLibCore.h>
  8. NS_ASSUME_NONNULL_BEGIN
  9. /// 分享的直播间消息
  10. @interface KSChatLiveMessage : RCMessageContent
  11. @property (nonatomic, strong) NSString *roomUID;
  12. @property (nonatomic, strong) NSString *teacherAvatar;
  13. @property (nonatomic, strong) NSString *teacherName;
  14. @property (nonatomic, strong) NSString *liveDescMessage;
  15. @end
  16. NS_ASSUME_NONNULL_END