aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model/Channels/ChannelItemSortField.cs
blob: 89d105e44050268f49cf0e2322f60110d258f17b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#pragma warning disable CS1591
#pragma warning disable SA1600

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