2
0

WFCCReadReport.h 581 B

123456789101112131415161718192021222324
  1. //
  2. // WFCCConversation.h
  3. // WFChatClient
  4. //
  5. // Created by heavyrain on 2017/8/16.
  6. // Copyright © 2017年 WildFireChat. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. #import "WFCCConversation.h"
  10. /**
  11. 会话
  12. */
  13. @interface WFCCReadReport : WFCCJsonSerializer
  14. +(instancetype)readed:(WFCCConversation *)conversation
  15. userId:(NSString *)userId
  16. timestamp:(long long)timestamp;
  17. @property (nonatomic, strong)WFCCConversation *conversation;
  18. @property (nonatomic, strong)NSString *userId;
  19. @property (nonatomic, assign)long long timestamp;
  20. @end