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

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