mirror of
https://github.com/immich-app/immich.git
synced 2026-07-28 14:47:30 -07:00
27 lines
578 B
Dart
27 lines
578 B
Dart
enum SortOrder {
|
|
asc,
|
|
desc;
|
|
|
|
SortOrder reverse() {
|
|
return this == SortOrder.asc ? SortOrder.desc : SortOrder.asc;
|
|
}
|
|
}
|
|
|
|
enum TextSearchType { context, filename, description, ocr }
|
|
|
|
enum ActionSource { timeline, viewer }
|
|
|
|
enum ShareAssetType { original, preview }
|
|
|
|
enum CleanupStep { selectDate, scan, delete }
|
|
|
|
enum AssetKeepType { none, photosOnly, videosOnly }
|
|
|
|
enum AssetDateAggregation { start, end }
|
|
|
|
enum SlideshowLook { contain, cover, blurredBackground }
|
|
|
|
enum SlideshowDirection { forward, backward, shuffle }
|
|
|
|
enum PartnerDirection { sharedBy, sharedWith }
|