extraMediaEventModel.h 473 B

12345678910111213141516171819202122
  1. //
  2. // extraMediaEventModel.h
  3. // 隐私保护
  4. //
  5. // Created by xd h on 2024/1/29.
  6. //
  7. #import "SuperModel.h"
  8. NS_ASSUME_NONNULL_BEGIN
  9. @interface extraMediaEventDataModel : SuperModel
  10. @property (nonatomic, copy) NSString * name;// 文件夹名称(磁盘)
  11. @property (nonatomic, assign) int event;//0 插入 1拔出 2 安全拔出
  12. @end
  13. @interface extraMediaEventModel : SuperModel
  14. @property (nonatomic, strong)extraMediaEventDataModel*data;
  15. @end
  16. NS_ASSUME_NONNULL_END