jellyfin/MediaBrowser.Model/Channels/ChannelItemSortField.cs
2020-02-04 01:49:27 +01:00

17 lines
327 B
C#

#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
}
}