1234567891011121314151617181920212223242526 |
- //
- // recordFileModel.h
- // 双子星云手机
- //
- // Created by xd h on 2025/3/28.
- //
- #import "SuperModel.h"
- NS_ASSUME_NONNULL_BEGIN
- @interface recordFileModel : SuperModel
- @property (nonatomic, copy) NSString *fileName;//文件名
- @property (nonatomic, copy) NSString *filePath;//路径
- @property (nonatomic, assign) unsigned long long fileSize;// 文件大小
- @property (nonatomic, assign) BOOL isDirectory;//文件是否存在
- @property (nonatomic, strong) NSDate *modificationDate;//最后修改日志
- @property (nonatomic, assign) NSInteger totalTime;// 录音时长
- @property (nonatomic, assign) BOOL showAllType;// 是否展示全部内容
- @property (nonatomic, assign) BOOL isSelectType;//是否选中
- @property (nonatomic, assign) BOOL isEditType;//是否编辑状态
- @end
- NS_ASSUME_NONNULL_END
|