mirror of
https://github.com/lollipopkit/flutter_server_box.git
synced 2025-12-17 07:14:28 +01:00
17 lines
347 B
Dart
17 lines
347 B
Dart
import '../server/server_private_info.dart';
|
|
|
|
class DownloadItem {
|
|
DownloadItem(this.spi, this.remotePath, this.localPath);
|
|
|
|
final ServerPrivateInfo spi;
|
|
final String remotePath;
|
|
final String localPath;
|
|
}
|
|
|
|
class DownloadItemEvent {
|
|
DownloadItemEvent(this.item, this.privateKey);
|
|
|
|
final DownloadItem item;
|
|
final String? privateKey;
|
|
}
|