ente/lib/models/ente_file.dart
2022-09-13 17:49:36 +05:30

9 lines
243 B
Dart

// EnteFile is base file entry for various type of files
// like DeviceFile,RemoteFile or TrashedFile
abstract class EnteFile {
// returns cacheKey which should be used while caching entry related to
// this file.
String? cacheKey();
}