audioPlayerViewController.h 470 B

12345678910111213141516171819
  1. //
  2. // audioPlayerViewController.h
  3. // 双子星云手机
  4. //
  5. // Created by xd h on 2024/5/26.
  6. //
  7. #import "BaseViewController.h"
  8. #import "NASFileAudioModel.h"
  9. NS_ASSUME_NONNULL_BEGIN
  10. @interface audioPlayerViewController : BaseViewController
  11. @property (nonatomic, strong) NASFileAudioDataModel *outSideDataModel;
  12. @property (nonatomic, assign) BOOL isfirstEnterType;//
  13. @property (nonatomic,copy) void (^didNeedDeleteFile)(NSString*filePath);
  14. @end
  15. NS_ASSUME_NONNULL_END