mirror of
https://gitlab.com/nkming2/nc-photos.git
synced 2025-01-22 16:56:19 +01:00
7 lines
107 B
Dart
7 lines
107 B
Dart
abstract class FileShare {
|
|
Future<void> share();
|
|
}
|
|
|
|
abstract class TextShare {
|
|
Future<void> share();
|
|
}
|