extract classes

This commit is contained in:
Luke Pulverenti
2014-10-08 19:31:44 -04:00
parent bebba65d61
commit d091fe0e6e
59 changed files with 655 additions and 422 deletions

View File

@@ -0,0 +1,13 @@
namespace MediaBrowser.Model.Channels
{
public enum ChannelItemSortField
{
Name = 0,
CommunityRating = 1,
PremiereDate = 2,
DateCreated = 3,
Runtime = 4,
PlayCount = 5,
CommunityPlayCount = 6
}
}