uniapp-app/nativeplugins/netease-Callkit/ios/NIMSDK.framework/Headers/NIMQChatGetChannelUnreadInfosParam.h
2025-10-09 16:48:46 +08:00

30 lines
558 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.

//
// NIMQChatGetChannelUnreadInfosParam.h
// NIMSDK
//
// Created by Netease.
// Copyright © 2022 Netease. All rights reserved.
//
#import <Foundation/Foundation.h>
NS_ASSUME_NONNULL_BEGIN
@class NIMQChatChannelIdInfo;
/**
* 查询未读信息的参数
*/
@interface NIMQChatGetChannelUnreadInfosParam : NSObject
/**
* 操作的对象频道ID列表
*/
@property (nonnull, nonatomic, copy) NSArray<NIMQChatChannelIdInfo *> *targets;
- (instancetype)initWithTargets:(NSArray<NIMQChatChannelIdInfo *> *)targets;
@end
NS_ASSUME_NONNULL_END