aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Controller/Sorting/SortOrder.cs
diff options
context:
space:
mode:
authorLukePulverenti <luke.pulverenti@gmail.com>2013-03-09 23:22:36 -0500
committerLukePulverenti <luke.pulverenti@gmail.com>2013-03-09 23:22:36 -0500
commit31d079f1baea895b5cb0f1a737140ab94dc9a4fe (patch)
tree1ed702bbed6edb1cc7f505c92e42a4263b1f8ed3 /MediaBrowser.Controller/Sorting/SortOrder.cs
parent913cb3c564e58dd440dbf3af81f38aad68c1ac2a (diff)
unified the two sorting api's
Diffstat (limited to 'MediaBrowser.Controller/Sorting/SortOrder.cs')
-rw-r--r--MediaBrowser.Controller/Sorting/SortOrder.cs33
1 files changed, 0 insertions, 33 deletions
diff --git a/MediaBrowser.Controller/Sorting/SortOrder.cs b/MediaBrowser.Controller/Sorting/SortOrder.cs
deleted file mode 100644
index 3152ac67e..000000000
--- a/MediaBrowser.Controller/Sorting/SortOrder.cs
+++ /dev/null
@@ -1,33 +0,0 @@
-
-namespace MediaBrowser.Controller.Sorting {
- /// <summary>
- /// Enum SortOrder
- /// </summary>
- public enum SortOrder {
-
- /// <summary>
- /// Sort by name
- /// </summary>
- Name,
- /// <summary>
- /// Sort by date added to the library
- /// </summary>
- Date,
- /// <summary>
- /// Sort by community rating
- /// </summary>
- Rating,
- /// <summary>
- /// Sort by runtime
- /// </summary>
- Runtime,
- /// <summary>
- /// Sort by year
- /// </summary>
- Year,
- /// <summary>
- /// Custom sort order added by plugins
- /// </summary>
- Custom
- }
-}