HyphenateChatSDK  4.6.0
EMConversationFilter.h
1 //
2 // EMConversationFilter.h
3 // HyphenateChat
4 //
5 // Created by li xiaoming on 2023/12/6.
6 // Copyright © 2023 easemob.com. All rights reserved.
7 //
8 
9 #import <Foundation/Foundation.h>
10 #import "EMConversation.h"
11 
12 NS_ASSUME_NONNULL_BEGIN
13 
21 @interface EMConversationFilter : NSObject
22 
31 @property (nonatomic) NSInteger pageSize;
32 
41 @property (nonatomic) EMMarkType mark;
42 
60 - (instancetype _Nonnull)initWithMark:(EMMarkType)mark pageSize:(NSInteger)pageSize;
61 @end
62 
63 NS_ASSUME_NONNULL_END
Definition: EMConversationFilter.h:21
EMMarkType mark
Definition: EMConversationFilter.h:41
NSInteger pageSize
Definition: EMConversationFilter.h:31