Blame view

HHDoctorSDK/NIMSDK.framework/Headers/NIMImportedRecentSession.h 585 Bytes
shmily authored
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34
//
//  NIMImportedRecentSession.h
//  NIMLib
//
//  Created by Netease.
//  Copyright © 2018年 Netease. All rights reserved.
//

#import <Foundation/Foundation.h>

NS_ASSUME_NONNULL_BEGIN

@class NIMSession;

/**
 *  待导入的最近会话模型
 */
@interface NIMImportedRecentSession : NSObject

/**
 *  会话
 *  @discussion 当前只支持 P2P 和 Team 会话类型
 */
@property (nonatomic,copy)   NIMSession  *session;

/**
 *  时间戳
 *  @discussion 最近会话的当前时间
 */
@property (nonatomic,assign)    NSTimeInterval  timestamp;

@end

NS_ASSUME_NONNULL_END