| 1234567891011121314151617181920212223242526 |
- //
- // KSLiveChatroomEnter.h
- // KulexiuForTeacher
- //
- // Created by Kyle on 2022/3/30.
- //
- #import <RongIMLibCore/RongIMLibCore.h>
- NS_ASSUME_NONNULL_BEGIN
- @interface KSLiveChatroomEnter : RCMessageContent
- /**
- 用户 Id
- */
- @property(nonatomic, copy, nonnull) NSString *userId;
- /**
- 用户名称
- */
- @property(nonatomic, copy, nonnull) NSString *userName;
- @end
- NS_ASSUME_NONNULL_END
|