mirror of
https://github.com/ente-io/ente.git
synced 2025-07-01 13:13:35 +00:00
13 lines
147 B
Dart
13 lines
147 B
Dart
enum PreviewItemStatus {
|
|
// in progress
|
|
compressing,
|
|
uploading,
|
|
// error
|
|
failed,
|
|
// queued
|
|
inQueue,
|
|
retry,
|
|
// done
|
|
uploaded,
|
|
}
|