tangtaoit 7b0c1bc743 init
2023-05-25 10:32:00 +08:00

22 lines
547 B
Objective-C

//
// WKSyncChannelMessageModel.h
// WuKongIMSDK
//
// Created by tt on 2020/10/5.
//
#import <Foundation/Foundation.h>
#import "WKMessage.h"
NS_ASSUME_NONNULL_BEGIN
@interface WKSyncChannelMessageModel : NSObject
@property(nonatomic,assign) uint32_t startMessageSeq; // 开始消息序列号
@property(nonatomic,assign) uint32_t endMessageSeq; // 结束消息序列号
@property(nonatomic,assign) BOOL more; // 是否还有更多数据
@property(nonatomic,strong) NSArray<WKMessage*> *messages; // 消息集合
@end
NS_ASSUME_NONNULL_END