WFCCQuoteInfo.h 654 B

12345678910111213141516171819202122232425
  1. //
  2. // WFCCQuoteInfo.h
  3. // WFChatClient
  4. //
  5. // Created by dali on 2020/10/4.
  6. // Copyright © 2020 WildFireChat. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. #import "WFCCJsonSerializer.h"
  10. NS_ASSUME_NONNULL_BEGIN
  11. @class WFCCMessage;
  12. @interface WFCCQuoteInfo : WFCCJsonSerializer
  13. - (instancetype)initWithMessage:(WFCCMessage *)message;
  14. @property (nonatomic, assign)long long messageUid;
  15. @property (nonatomic, strong)NSString *userId;
  16. @property (nonatomic, strong)NSString *userDisplayName;
  17. @property (nonatomic, strong)NSString *messageDigest;
  18. - (NSDictionary *)encode;
  19. - (void)decode:(NSDictionary *)dictData;
  20. @end
  21. NS_ASSUME_NONNULL_END