12345678910111213141516171819202122 |
- //
- // extraMediaEventModel.h
- // 隐私保护
- //
- // Created by xd h on 2024/1/29.
- //
- #import "SuperModel.h"
- NS_ASSUME_NONNULL_BEGIN
- @interface extraMediaEventDataModel : SuperModel
- @property (nonatomic, copy) NSString * name;// 文件夹名称(磁盘)
- @property (nonatomic, assign) int event;//0 插入 1拔出 2 安全拔出
- @end
- @interface extraMediaEventModel : SuperModel
- @property (nonatomic, strong)extraMediaEventDataModel*data;
- @end
- NS_ASSUME_NONNULL_END
|