25 lines
570 B
Objective-C
25 lines
570 B
Objective-C
//
|
|
// XPArrangeMicInfoModel.h
|
|
// xplan-ios
|
|
//
|
|
// Created by 冯硕 on 2021/12/20.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
#import "MicroQueueModel.h"
|
|
#import "MicroStateModel.h"
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@interface XPArrangeMicInfoModel : NSObject
|
|
///房间id
|
|
@property (nonatomic,copy) NSString *roomId;
|
|
///房主的uid
|
|
@property (nonatomic,copy) NSString *roomUid;
|
|
///需要抱上麦的
|
|
@property (nonatomic, strong) NSMutableDictionary<NSString *, MicroQueueModel *> *micQueue;
|
|
///用户类型
|
|
@property (nonatomic,assign) BOOL isManager;
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|