17 lines
397 B
Objective-C
17 lines
397 B
Objective-C
//
|
|
// XPIMChatRoomMemberImpl.h
|
|
// xplan-ios
|
|
//
|
|
// Created by 冯硕 on 2021/10/21.
|
|
// 房间成员变化的类 在线列表 拉黑/移除成员 查询成员 设置/取消管理 踢出成员
|
|
|
|
#import <Foundation/Foundation.h>
|
|
#import "XPIMChatRoomMemberInterface.h"
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@interface XPIMChatRoomMemberImpl : NSObject<XPIMChatRoomMemberInterface>
|
|
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|