12345678910111213141516171819202122232425262728293031 |
- //
- // lastFileModel.h
- // Private-x
- //
- // Created by xd h on 2024/7/8.
- //
- #import "SuperModel.h"
- NS_ASSUME_NONNULL_BEGIN
- @interface lastFileModel : SuperModel
- @property (nonatomic, copy) NSString*path;
- @property (nonatomic, copy) NSString*name;
- @property (nonatomic, copy) NSString*time;
- @property (nonatomic, assign) long size;
- @property (nonatomic, copy) NSString*type;// jpg video audio
- @property (nonatomic, assign) NSInteger duration;
- //自定义
- @property (nonatomic, assign) BOOL isSelectType;
- @property (nonatomic, assign) NSTimeInterval lastPreTime;//最后预览时间
- @property (nonatomic, assign) BOOL isDownDoneType;//下载完成
- @property (nonatomic, copy) NSString*localPath;//本地缓存路径 不能直接用 每次都要重新取
- - (NSDictionary *)lastFileInfoFun;
- @end
- NS_ASSUME_NONNULL_END
|