aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model/Entities/SortOrder.cs
diff options
context:
space:
mode:
Diffstat (limited to 'MediaBrowser.Model/Entities/SortOrder.cs')
-rw-r--r--MediaBrowser.Model/Entities/SortOrder.cs17
1 files changed, 17 insertions, 0 deletions
diff --git a/MediaBrowser.Model/Entities/SortOrder.cs b/MediaBrowser.Model/Entities/SortOrder.cs
new file mode 100644
index 000000000..5130449ba
--- /dev/null
+++ b/MediaBrowser.Model/Entities/SortOrder.cs
@@ -0,0 +1,17 @@
+namespace MediaBrowser.Model.Entities
+{
+ /// <summary>
+ /// Enum SortOrder
+ /// </summary>
+ public enum SortOrder
+ {
+ /// <summary>
+ /// The ascending
+ /// </summary>
+ Ascending,
+ /// <summary>
+ /// The descending
+ /// </summary>
+ Descending
+ }
+} \ No newline at end of file