aboutsummaryrefslogtreecommitdiff
path: root/Jellyfin.Data/Enums/SortOrder.cs
diff options
context:
space:
mode:
authorPatrick Barron <barronpm@gmail.com>2020-06-30 21:44:41 -0400
committerPatrick Barron <barronpm@gmail.com>2020-07-17 16:11:53 -0400
commitab396225eaf486932fdb2f23eefa1cbfecbb27f4 (patch)
treeb225cd9617e14ae1f0386f9ff8aa85a8a433e424 /Jellyfin.Data/Enums/SortOrder.cs
parent175e7b45e56fb97b0f9bdddd99c195af3ecabcc6 (diff)
Migrate Display Preferences to EF Core
Diffstat (limited to 'Jellyfin.Data/Enums/SortOrder.cs')
-rw-r--r--Jellyfin.Data/Enums/SortOrder.cs18
1 files changed, 18 insertions, 0 deletions
diff --git a/Jellyfin.Data/Enums/SortOrder.cs b/Jellyfin.Data/Enums/SortOrder.cs
new file mode 100644
index 000000000..309fa7877
--- /dev/null
+++ b/Jellyfin.Data/Enums/SortOrder.cs
@@ -0,0 +1,18 @@
+namespace Jellyfin.Data.Enums
+{
+ /// <summary>
+ /// An enum representing the sorting order.
+ /// </summary>
+ public enum SortOrder
+ {
+ /// <summary>
+ /// Sort in increasing order.
+ /// </summary>
+ Ascending,
+
+ /// <summary>
+ /// Sort in decreasing order.
+ /// </summary>
+ Descending
+ }
+}