trash_file.dart 409 B

12345678910111213141516
  1. // @dart=2.9
  2. import 'package:photos/models/file.dart';
  3. class TrashFile extends File {
  4. // time when file was put in the trash for first time
  5. int createdAt;
  6. // for non-deleted trash items, updateAt is usually equal to the latest time
  7. // when the file was moved to trash
  8. int updateAt;
  9. // time after which will will be deleted from trash & user's storage usage
  10. // will go down
  11. int deleteBy;
  12. }