ente/lib/models/search_result.dart
2020-04-10 00:33:11 +05:30

6 lines
72 B
Dart

class SearchResult {
final String path;
SearchResult(this.path);
}