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