WFCCFileRecord.h 677 B

12345678910111213141516171819202122232425
  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. NS_ASSUME_NONNULL_BEGIN
  11. @interface WFCCFileRecord : NSObject
  12. @property (nonatomic, strong)WFCCConversation *conversation;
  13. @property (nonatomic, assign)long long messageUid;
  14. @property (nonatomic, strong)NSString *userId;
  15. @property (nonatomic, strong)NSString *name;
  16. @property (nonatomic, strong)NSString *url;
  17. @property (nonatomic, assign)int size;
  18. @property (nonatomic, assign)int downloadCount;
  19. @property (nonatomic, assign)long long timestamp;
  20. @end
  21. NS_ASSUME_NONNULL_END