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

25 lines
571 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.

//
// NIMQChatGetLastMessageOfChannelsResult.h
// NIMSDK
//
// Created by Evang on 2022/5/26.
// Copyright © 2022 Netease. All rights reserved.
//
#import <Foundation/Foundation.h>
@class NIMQChatMessage;
NS_ASSUME_NONNULL_BEGIN
// 批量获取频道最后一条消息的结果
@interface NIMQChatGetLastMessageOfChannelsResult : NSObject
/**
* 字典形式channelId对应最后一条消息[@(channelId): NIMQChatMessage]
*/
@property (nonatomic, strong) NSDictionary<NSNumber *, NIMQChatMessage *> *lastMessageOfChannelDic;
@end
NS_ASSUME_NONNULL_END