mirror of
https://github.com/ente-io/ente.git
synced 2025-08-07 23:18:10 +00:00
17 lines
313 B
Dart
17 lines
313 B
Dart
import "package:photos/models/file/file.dart";
|
|
import "package:photos/models/search/search_types.dart";
|
|
|
|
abstract class SearchResult {
|
|
ResultType type();
|
|
|
|
String name();
|
|
|
|
EnteFile? previewThumbnail();
|
|
|
|
String heroTag() {
|
|
return '${type().toString()}_${name()}';
|
|
}
|
|
|
|
List<EnteFile> resultFiles();
|
|
}
|