HyphenateChatSDK  4.6.0
EMMessageReaction.h
1 //
2 // EMMessageReaction.h
3 // HyphenateChat
4 //
5 // Created by 冯钊 on 2022/2/11.
6 // Copyright © 2022 easemob.com. All rights reserved.
7 //
8 
9 #import <Foundation/Foundation.h>
10 
11 NS_ASSUME_NONNULL_BEGIN
12 
20 @interface EMMessageReaction : NSObject
21 
29 @property (readonly, nullable) NSString *reaction;
30 
38 @property (readonly) NSUInteger count;
39 
51 @property (readonly) BOOL isAddedBySelf;
52 
66 @property (readonly, nullable) NSArray <NSString *>*userList;
67 
68 @end
69 
70 NS_ASSUME_NONNULL_END
Definition: EMMessageReaction.h:20
NSArray< NSString * > * userList
Definition: EMMessageReaction.h:66
BOOL isAddedBySelf
Definition: EMMessageReaction.h:51
NSString * reaction
Definition: EMMessageReaction.h:29
NSUInteger count
Definition: EMMessageReaction.h:38