24 lines
353 B
Objective-C
24 lines
353 B
Objective-C
//
|
|
// NIMQChatLeaveServerParam.h
|
|
// NIMSDK
|
|
//
|
|
// Created by Netease.
|
|
// Copyright © 2022 Netease. All rights reserved.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
/**
|
|
* 离开服务器
|
|
*/
|
|
@interface NIMQChatLeaveServerParam : NSObject
|
|
|
|
@property (nonatomic, assign) unsigned long long serverId;
|
|
|
|
@end
|
|
|
|
|
|
NS_ASSUME_NONNULL_END
|