修改了加入房间 获取麦序

This commit is contained in:
fengshuo
2021-10-21 17:37:26 +08:00
committed by zu
parent 12831cfd3c
commit cdcfda385f
22 changed files with 503 additions and 6 deletions

View File

@@ -0,0 +1,19 @@
//
// XPIMRoomMicQueueDelegate.h
// xplan-ios
//
// Created by 冯硕 on 2021/10/21.
//
#import <Foundation/Foundation.h>
NS_ASSUME_NONNULL_BEGIN
@class MicroQueueItemModel;
@protocol XPIMRoomMicQueueDelegate <NSObject>
///获取房间队列成功
- (void)onGetRoomMicroQueueSuccess:(NSDictionary<NSString *, MicroQueueItemModel *>*)microQueue;
@end
NS_ASSUME_NONNULL_END