You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

62 lines
1.0 KiB

//
// JCMessageChannelConversation.h
// JCSDKOCShare
//
// Created by maikireton on 2019/11/19.
// Copyright © 2019 juphoon. All rights reserved.
//
#import <Foundation/Foundation.h>
/**
* @addtogroup
* @{
*/
NS_ASSUME_NONNULL_BEGIN
/**
*
*/
@interface JCMessageChannelConversation : NSObject
/**
* id
*/
@property (nonatomic, copy) NSString* serverUid;
/**
* id
*/
@property (nonatomic) long lastMessageId;
/**
* id()
*/
@property (nonatomic) long lastOtherReadMessageId;
/**
* id()
*/
@property (nonatomic) long lastOtherRecvMessageId;
/**
* id
*/
@property (nonatomic) long lastSelfReadMessageId;
/**
*
*/
@property (nonatomic) long updateTime;
/**
*
*/
@property (nonatomic) long lastMessageTime;
/**
*
*/
@property (nonatomic) NSString* lastMessageBrief;
@end
NS_ASSUME_NONNULL_END
/**
* @}
*/