2
0

WFCCDeliveryReport.h 477 B

12345678910111213141516171819202122
  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 "WFCCJsonSerializer.h"
  10. /**
  11. 会话
  12. */
  13. @interface WFCCDeliveryReport : WFCCJsonSerializer
  14. +(instancetype)delivered:(NSString *)userId
  15. timestamp:(long long)timestamp;
  16. @property (nonatomic, strong)NSString *userId;
  17. @property (nonatomic, assign)long long timestamp;
  18. @end