NIMSDK-iOS
载入中...
搜索中...
未找到
NIMImportedRecentSession.h
浏览该文件的文档.
1//
2// NIMImportedRecentSession.h
3// NIMLib
4//
5// Created by Netease.
6// Copyright © 2018年 Netease. All rights reserved.
7//
8
9#import <Foundation/Foundation.h>
10
11NS_ASSUME_NONNULL_BEGIN
12
13@class NIMSession;
14
15/**
16 * 待导入的最近会话模型
17 */
18@interface NIMImportedRecentSession : NSObject
19
20/**
21 * 会话
22 * @discussion 当前只支持 P2P 和 Team 会话类型
23 */
24@property (nonatomic,copy) NIMSession *session;
25
26/**
27 * 时间戳
28 * @discussion 最近会话的当前时间
29 */
30@property (nonatomic,assign) NSTimeInterval timestamp;
31
32@end
33
34NS_ASSUME_NONNULL_END
Definition: NIMImportedRecentSession.h:19
NIMSession * session
Definition: NIMImportedRecentSession.h:24
NSTimeInterval timestamp
Definition: NIMImportedRecentSession.h:30
Definition: NIMSession.h:49