NIMSDK-iOS
载入中...
搜索中...
未找到
NIMQChatDeleteServerRoleParam.h
浏览该文件的文档.
1//
2// NIMQChatDeleteServerRoleParam.h
3// NIMSDK
4//
5// Created by Netease.
6// Copyright © 2022 Netease. All rights reserved.
7//
8
9#import <Foundation/Foundation.h>
10
11NS_ASSUME_NONNULL_BEGIN
12
13/**
14 * 删除服务器身份组参数
15 */
16@interface NIMQChatDeleteServerRoleParam : NSObject
17/**
18 * 服务器id
19 */
20@property (nonatomic, assign) unsigned long long serverId;
21/**
22 * 身份组id
23 */
24@property (nonatomic, assign) unsigned long long roleId;
25@end
26
27
28NS_ASSUME_NONNULL_END
Definition: NIMQChatDeleteServerRoleParam.h:17
unsigned long long serverId
Definition: NIMQChatDeleteServerRoleParam.h:20
unsigned long long roleId
Definition: NIMQChatDeleteServerRoleParam.h:24