12345678910111213141516171819 |
- //
- // WFCCConversation.m
- // WFChatClient
- //
- // Created by heavyrain on 2017/8/16.
- // Copyright © 2017年 WildFireChat. All rights reserved.
- //
- #import "WFCCDeliveryReport.h"
- @implementation WFCCDeliveryReport
- +(instancetype)delivered:(NSString *)userId
- timestamp:(long long)timestamp {
- WFCCDeliveryReport *d = [[WFCCDeliveryReport alloc] init];
- d.userId = userId;
- d.timestamp = timestamp;
- return d;;
- }
- @end
|