aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model/Querying/ItemSortBy.cs
diff options
context:
space:
mode:
Diffstat (limited to 'MediaBrowser.Model/Querying/ItemSortBy.cs')
-rw-r--r--MediaBrowser.Model/Querying/ItemSortBy.cs54
1 files changed, 54 insertions, 0 deletions
diff --git a/MediaBrowser.Model/Querying/ItemSortBy.cs b/MediaBrowser.Model/Querying/ItemSortBy.cs
new file mode 100644
index 0000000000..9599e2aac2
--- /dev/null
+++ b/MediaBrowser.Model/Querying/ItemSortBy.cs
@@ -0,0 +1,54 @@
+
+namespace MediaBrowser.Model.Querying
+{
+ /// <summary>
+ /// These represent sort orders that are known by the core
+ /// </summary>
+ public static class ItemSortBy
+ {
+ /// <summary>
+ /// The album
+ /// </summary>
+ public const string Album = "Album";
+ /// <summary>
+ /// The album artist
+ /// </summary>
+ public const string AlbumArtist = "AlbumArtist";
+ /// <summary>
+ /// The artist
+ /// </summary>
+ public const string Artist = "Artist";
+ /// <summary>
+ /// The date created
+ /// </summary>
+ public const string DateCreated = "DateCreated";
+ /// <summary>
+ /// The date played
+ /// </summary>
+ public const string DatePlayed = "DatePlayed";
+ /// <summary>
+ /// The premiere date
+ /// </summary>
+ public const string PremiereDate = "PremiereDate";
+ /// <summary>
+ /// The sort name
+ /// </summary>
+ public const string SortName = "SortName";
+ /// <summary>
+ /// The random
+ /// </summary>
+ public const string Random = "Random";
+ /// <summary>
+ /// The runtime
+ /// </summary>
+ public const string Runtime = "Runtime";
+ /// <summary>
+ /// The community rating
+ /// </summary>
+ public const string CommunityRating = "CommunityRating";
+ /// <summary>
+ /// The production year
+ /// </summary>
+ public const string ProductionYear = "ProductionYear";
+ }
+}