10 lines
195 B
Dart
10 lines
195 B
Dart
enum GalleryType {
|
|
homepage,
|
|
archive,
|
|
trash,
|
|
local_folder,
|
|
// indicator for gallery view of collections shared with the user
|
|
shared_collection,
|
|
owned_collection,
|
|
search_results
|
|
}
|