Files
yinmeng-ios/xplan-ios/Main/IM/XPIMManager.h
2021-10-21 17:59:11 +08:00

25 lines
641 B
Objective-C

//
// XPIMManager.h
// xplan-ios
//
// Created by 冯硕 on 2021/10/21.
//
#import <Foundation/Foundation.h>
#import "XPIMLoginInterface.h"
#import "XPIMRoomInterface.h"
#import "XPIMRoomMicQueueInterface.h"
NS_ASSUME_NONNULL_BEGIN
@interface XPIMManager : NSObject
+ (instancetype)shareManager;
///im登录的协议
@property (nonatomic,strong, readonly) id<XPIMLoginInterface> imLoginManager;
///聊天室的管理类
@property (nonatomic,strong, readonly) id<XPIMRoomInterface> chatRoomManager;
///麦序的管理类
@property (nonatomic,strong, readonly) id<XPIMRoomMicQueueInterface> microQueueManager;
@end
NS_ASSUME_NONNULL_END