ChannelItemSortField.cs 327 B

12345678910111213141516
  1. #pragma warning disable CS1591
  2. #pragma warning disable SA1600
  3. namespace MediaBrowser.Model.Channels
  4. {
  5. public enum ChannelItemSortField
  6. {
  7. Name = 0,
  8. CommunityRating = 1,
  9. PremiereDate = 2,
  10. DateCreated = 3,
  11. Runtime = 4,
  12. PlayCount = 5,
  13. CommunityPlayCount = 6
  14. }
  15. }