| 12345678910111213141516171819202122232425 |
- //
- // KSChatLiveMessage.h
- // KulexiuForTeacher
- //
- // Created by 王智 on 2022/6/8.
- //
- #import <RongIMLibCore/RongIMLibCore.h>
- NS_ASSUME_NONNULL_BEGIN
- /// 分享的直播间消息
- @interface KSChatLiveMessage : RCMessageContent
- @property (nonatomic, strong) NSString *roomUID;
- @property (nonatomic, strong) NSString *teacherAvatar;
- @property (nonatomic, strong) NSString *teacherName;
- @property (nonatomic, strong) NSString *liveDescMessage;
- @end
- NS_ASSUME_NONNULL_END
|