2025-10-09 16:48:46 +08:00

33 lines
620 B
Objective-C
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

//
// NIMQChatGetServerRolesResult.h
// NIMSDK
//
// Created by Netease.
// Copyright © 2022 Netease. All rights reserved.
//
#import <Foundation/Foundation.h>
NS_ASSUME_NONNULL_BEGIN
@class NIMQChatServerRole;
/**
* 查询服务器下身份组列表
*/
@interface NIMQChatGetServerRolesResult : NSObject
/**
* 身份组列表
*/
@property (nonatomic, copy) NSArray <NIMQChatServerRole *> *serverRoleArray;
/**
* 是否是本身份组成员的roleId的集合roleId需要解析成unsigned long long类型
*/
@property (nonatomic, copy) NSSet <NSNumber *> *isMemberSet;
@end
NS_ASSUME_NONNULL_END