123456789101112131415161718192021222324252627282930313233 |
- //
- // RCChatroomSeatsControl.h
- // StudentDaya
- //
- // Created by Kyle on 2022/2/21.
- // Copyright © 2022 DayaMusic. All rights reserved.
- //
- #import <RongIMLibCore/RongIMLibCore.h>
- NS_ASSUME_NONNULL_BEGIN
- @interface RCChatroomSeatsControl : RCMessageContent
- /**
- 用户id
- */
- @property(nonatomic, copy, nonnull) NSString *userId;
- /**
- 用户名称
- */
- @property(nonatomic, copy, nonnull) NSString *userName;
- /**
- 是否禁止连麦 YES 禁止 NO 开启
- */
- @property(nonatomic, assign) BOOL seatBan;
- @end
- NS_ASSUME_NONNULL_END
|