ChannelItemSortField.cs 264 B

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