mirror of
https://github.com/ente-io/ente.git
synced 2025-05-28 21:47:57 +00:00
15 lines
419 B
Dart
15 lines
419 B
Dart
import 'package:photos/models/file/file.dart';
|
|
|
|
class TrashFile extends EnteFile {
|
|
// time when file was put in the trash for first time
|
|
late int createdAt;
|
|
|
|
// for non-deleted trash items, updateAt is usually equal to the latest time
|
|
// when the file was moved to trash
|
|
late int updateAt;
|
|
|
|
// time after which will will be deleted from trash & user's storage usage
|
|
// will go down
|
|
late int deleteBy;
|
|
}
|