ente/lib/models/search/search_result.dart

18 lines
272 B
Dart
Raw Normal View History

2022-09-14 08:33:12 +00:00
import 'package:photos/models/file.dart';
2023-02-24 07:56:33 +00:00
import "search_types.dart";
2022-09-14 08:33:12 +00:00
abstract class SearchResult {
ResultType type();
String name();
File? previewThumbnail();
2022-09-14 08:33:12 +00:00
String heroTag() {
return '${type().toString()}_${name()}';
}
List<File> resultFiles();
}