lastFileModel.h 823 B

12345678910111213141516171819202122232425262728293031
  1. //
  2. // lastFileModel.h
  3. // Private-x
  4. //
  5. // Created by xd h on 2024/7/8.
  6. //
  7. #import "SuperModel.h"
  8. NS_ASSUME_NONNULL_BEGIN
  9. @interface lastFileModel : SuperModel
  10. @property (nonatomic, copy) NSString*path;
  11. @property (nonatomic, copy) NSString*name;
  12. @property (nonatomic, copy) NSString*time;
  13. @property (nonatomic, assign) long size;
  14. @property (nonatomic, copy) NSString*type;// jpg video audio
  15. @property (nonatomic, assign) NSInteger duration;
  16. //自定义
  17. @property (nonatomic, assign) BOOL isSelectType;
  18. @property (nonatomic, assign) NSTimeInterval lastPreTime;//最后预览时间
  19. @property (nonatomic, assign) BOOL isDownDoneType;//下载完成
  20. @property (nonatomic, copy) NSString*localPath;//本地缓存路径 不能直接用 每次都要重新取
  21. - (NSDictionary *)lastFileInfoFun;
  22. @end
  23. NS_ASSUME_NONNULL_END