2
0

WFCCFileRecord.h 718 B

1234567891011121314151617181920212223242526
  1. //
  2. // WFCCFileRecord.h
  3. // WFChatClient
  4. //
  5. // Created by dali on 2020/8/2.
  6. // Copyright © 2020 WildFireChat. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. #import "WFCCConversation.h"
  10. #import "WFCCJsonSerializer.h"
  11. NS_ASSUME_NONNULL_BEGIN
  12. @interface WFCCFileRecord : WFCCJsonSerializer
  13. @property (nonatomic, strong)WFCCConversation *conversation;
  14. @property (nonatomic, assign)long long messageUid;
  15. @property (nonatomic, strong)NSString *userId;
  16. @property (nonatomic, strong)NSString *name;
  17. @property (nonatomic, strong)NSString *url;
  18. @property (nonatomic, assign)int size;
  19. @property (nonatomic, assign)int downloadCount;
  20. @property (nonatomic, assign)long long timestamp;
  21. @end
  22. NS_ASSUME_NONNULL_END