aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model/Channels/ChannelItemSortField.cs
blob: 6b5015b774c5a2ff7bed159a6092ad0d18f50ae4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
namespace MediaBrowser.Model.Channels
{
    public enum ChannelItemSortField
    {
        Name = 0,
        CommunityRating = 1,
        PremiereDate = 2,
        DateCreated = 3,
        Runtime = 4,
        PlayCount = 5,
        CommunityPlayCount = 6
    }
}