aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model/Channels/ChannelItemSortField.cs
blob: af75e3edd0a15b685d84e51191fcf68215659d30 (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
    }
}