import 'package:hadi_hoda_flutter/features/download/domain/entities/download_entity.dart'; sealed class DownloadEvent { const DownloadEvent(); } class StartDownloadEvent extends DownloadEvent { final int toLevel; const StartDownloadEvent({required this.toLevel}); } // // class StartBatchDownloadEvent extends DownloadEvent { // final BatchDownloadParams batchParams; // final String? destinationRoute; // final Map? destinationPathParameters; // // const StartBatchDownloadEvent({ // required this.batchParams, // this.destinationRoute, // this.destinationPathParameters, // }); // } // class GetImagesEvent extends DownloadEvent {} // class GetAudiosEvent extends DownloadEvent {} class SaveLevelsEvent extends DownloadEvent {} class CancelDownloadEvent extends DownloadEvent {}