123456789101112131415161718192021 |
- //
- // TXLiveMessageSeatControl.h
- // StudentDaya
- //
- // Created by 王智 on 2023/2/28.
- // Copyright © 2023 DayaMusic. All rights reserved.
- //
- #import "TXLiveMessageModel.h"
- NS_ASSUME_NONNULL_BEGIN
- @interface TXLiveMessageSeatControl : TXLiveMessageModel
- /**
- 是否禁止连麦 YES 禁止 NO 开启
- */
- @property(nonatomic, assign) BOOL seatBan;
- @end
- NS_ASSUME_NONNULL_END
|