| 12345678910111213141516171819202122232425 |
- //
- // KSLiveChatroomLeave.h
- // KulexiuForTeacher
- //
- // Created by Kyle on 2022/3/30.
- //
- #import <RongIMLibCore/RongIMLibCore.h>
- NS_ASSUME_NONNULL_BEGIN
- /// 用户主动退出发送消息
- @interface KSLiveChatroomLeave : RCMessageContent
- /**
- 用户 Id
- */
- @property(nonatomic, copy, nonnull) NSString *userId;
- /**
- 用户名称
- */
- @property(nonatomic, copy, nonnull) NSString *userName;
- @end
- NS_ASSUME_NONNULL_END
|