mirror of
https://github.com/friebetill/TubeCards.git
synced 2025-08-14 09:54:12 +08:00
9 lines
179 B
Dart
9 lines
179 B
Dart
/// Possible directions in which to sort a list of items
|
|
enum OrderDirection {
|
|
/// Specifies an ascending order
|
|
ascending,
|
|
|
|
/// Specifies a descending order
|
|
descending,
|
|
}
|