mirror of
https://github.com/WuKongIM/WuKongIMiOSSDK-Framework
synced 2025-06-01 05:57:40 +00:00
22 lines
547 B
Objective-C
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
|