aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model/DTO/ItemSortBy.cs
diff options
context:
space:
mode:
authorLukePulverenti <luke.pulverenti@gmail.com>2013-03-10 00:36:39 -0500
committerLukePulverenti <luke.pulverenti@gmail.com>2013-03-10 00:36:39 -0500
commitb1be6f1d73272fb629ff453f6890766faeccf9de (patch)
tree0fc8655dd48f442290e7b764889cd0a3bfef63c4 /MediaBrowser.Model/DTO/ItemSortBy.cs
parent31d079f1baea895b5cb0f1a737140ab94dc9a4fe (diff)
minor namespace changes in the model
Diffstat (limited to 'MediaBrowser.Model/DTO/ItemSortBy.cs')
-rw-r--r--MediaBrowser.Model/DTO/ItemSortBy.cs54
1 files changed, 0 insertions, 54 deletions
diff --git a/MediaBrowser.Model/DTO/ItemSortBy.cs b/MediaBrowser.Model/DTO/ItemSortBy.cs
deleted file mode 100644
index 141690a55..000000000
--- a/MediaBrowser.Model/DTO/ItemSortBy.cs
+++ /dev/null
@@ -1,54 +0,0 @@
-
-namespace MediaBrowser.Model.Dto
-{
- /// <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";
- }
-}