12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- //
- // TXLiveMessageSeatApply.h
- // StudentDaya
- //
- // Created by 王智 on 2023/2/28.
- // Copyright © 2023 DayaMusic. All rights reserved.
- //
- #import "TXLiveMessageModel.h"
- typedef NS_ENUM(NSInteger, SEATHANDLE) {
- SEATHANDLE_INVITE = 1, // 主讲人邀请连麦
- SEATHANDLE_DISINVITE = 2, // 主讲人取消邀请
- SEATHANDLE_APPLY = 3, // 观众申请连麦
- SEATHANDLE_CANCELAPPLY = 4,// 观众取消申请
- SEATHANDLE_KICKSEAT = 5, // 主讲人断开连麦人连麦
- };
- NS_ASSUME_NONNULL_BEGIN
- /// 连麦邀请或申请操作
- @interface TXLiveMessageSeatApply : TXLiveMessageModel
- /**
- 操作类型 1 主讲人邀请 2 主讲人取消邀请 3 观众申请 4 观众取消申请 5 主讲人断开连麦人连麦
- */
- @property (nonatomic, assign) SEATHANDLE type;
- // 主讲人名称
- @property (nonatomic, strong) NSString *teacherName;
- // 主讲人id
- @property (nonatomic, strong) NSString *teacherId;
- // 观众名称
- @property (nonatomic, strong) NSString *audienceName;
- // 观众id
- @property (nonatomic, strong) NSString *audienceId;
- /// 观众头像
- @property (nonatomic, strong) NSString *audienceAvatar;
- // 观众学习声部
- @property (nonatomic, strong) NSString *audienceSubjectName;
- @end
- NS_ASSUME_NONNULL_END
|