mirror of
https://gitlab.com/nkming2/nc-photos.git
synced 2025-01-23 17:26:18 +01:00
8 lines
204 B
Dart
8 lines
204 B
Dart
|
import 'package:nc_photos/account.dart';
|
||
|
import 'package:nc_photos/entity/file.dart';
|
||
|
|
||
|
abstract class Downloader {
|
||
|
/// Download file to device
|
||
|
Future<void> downloadFile(Account account, File file);
|
||
|
}
|