35 lines
580 B
Objective-C
35 lines
580 B
Objective-C
//
|
|
// NIMQChatMarkServerReadParam.h
|
|
// NIMSDK
|
|
//
|
|
// Created by Netease.
|
|
// Copyright © 2022 Netease. All rights reserved.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
#import "NIMQChatDefs.h"
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
/**
|
|
* 设置以游客身份订阅服务器的参数
|
|
*/
|
|
@interface NIMQChatSubscribeServerAsVisitorParam : NSObject <NSCopying>
|
|
|
|
/**
|
|
* 操作类型
|
|
*/
|
|
@property(nonatomic, assign) NIMQChatSubscribeOperationType operateType;
|
|
|
|
/**
|
|
* 圈组服务器ID列表
|
|
*/
|
|
@property(nonatomic, copy, nonnull) NSArray<NSNumber *> *serverIds;
|
|
|
|
@end
|
|
|
|
|
|
NS_ASSUME_NONNULL_END
|
|
|
|
|