123456789101112131415161718192021222324 |
- //
- // WFCCConversation.h
- // WFChatClient
- //
- // Created by heavyrain on 2017/8/16.
- // Copyright © 2017年 WildFireChat. All rights reserved.
- //
- #import <Foundation/Foundation.h>
- #import "WFCCConversation.h"
- /**
- 会话
- */
- @interface WFCCReadReport : WFCCJsonSerializer
- +(instancetype)readed:(WFCCConversation *)conversation
- userId:(NSString *)userId
- timestamp:(long long)timestamp;
- @property (nonatomic, strong)WFCCConversation *conversation;
- @property (nonatomic, strong)NSString *userId;
- @property (nonatomic, assign)long long timestamp;
- @end
|