WFCCDeliveryReport.m 445 B

12345678910111213141516171819
  1. //
  2. // WFCCConversation.m
  3. // WFChatClient
  4. //
  5. // Created by heavyrain on 2017/8/16.
  6. // Copyright © 2017年 WildFireChat. All rights reserved.
  7. //
  8. #import "WFCCDeliveryReport.h"
  9. @implementation WFCCDeliveryReport
  10. +(instancetype)delivered:(NSString *)userId
  11. timestamp:(long long)timestamp {
  12. WFCCDeliveryReport *d = [[WFCCDeliveryReport alloc] init];
  13. d.userId = userId;
  14. d.timestamp = timestamp;
  15. return d;;
  16. }
  17. @end