ChannelItemSortField.cs 296 B

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