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