ItemSortBy.cs 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. 
  2. namespace MediaBrowser.Model.Querying
  3. {
  4. /// <summary>
  5. /// These represent sort orders that are known by the core
  6. /// </summary>
  7. public static class ItemSortBy
  8. {
  9. /// <summary>
  10. /// The album
  11. /// </summary>
  12. public const string Album = "Album";
  13. /// <summary>
  14. /// The album artist
  15. /// </summary>
  16. public const string AlbumArtist = "AlbumArtist";
  17. /// <summary>
  18. /// The artist
  19. /// </summary>
  20. public const string Artist = "Artist";
  21. /// <summary>
  22. /// The budget
  23. /// </summary>
  24. public const string Budget = "Budget";
  25. /// <summary>
  26. /// The revenue
  27. /// </summary>
  28. public const string Revenue = "Revenue";
  29. /// <summary>
  30. /// The date created
  31. /// </summary>
  32. public const string DateCreated = "DateCreated";
  33. /// <summary>
  34. /// The date played
  35. /// </summary>
  36. public const string DatePlayed = "DatePlayed";
  37. /// <summary>
  38. /// The premiere date
  39. /// </summary>
  40. public const string PremiereDate = "PremiereDate";
  41. /// <summary>
  42. /// The sort name
  43. /// </summary>
  44. public const string SortName = "SortName";
  45. /// <summary>
  46. /// The random
  47. /// </summary>
  48. public const string Random = "Random";
  49. /// <summary>
  50. /// The runtime
  51. /// </summary>
  52. public const string Runtime = "Runtime";
  53. /// <summary>
  54. /// The community rating
  55. /// </summary>
  56. public const string CommunityRating = "CommunityRating";
  57. /// <summary>
  58. /// The production year
  59. /// </summary>
  60. public const string ProductionYear = "ProductionYear";
  61. /// <summary>
  62. /// The play count
  63. /// </summary>
  64. public const string PlayCount = "PlayCount";
  65. }
  66. }