SeriesTimerQuery.cs 487 B

12345678910111213141516171819
  1. using MediaBrowser.Model.Entities;
  2. namespace MediaBrowser.Model.LiveTv
  3. {
  4. public class SeriesTimerQuery
  5. {
  6. /// <summary>
  7. /// Gets or sets the sort by - SortName, Priority
  8. /// </summary>
  9. /// <value>The sort by.</value>
  10. public string SortBy { get; set; }
  11. /// <summary>
  12. /// Gets or sets the sort order.
  13. /// </summary>
  14. /// <value>The sort order.</value>
  15. public SortOrder SortOrder { get; set; }
  16. }
  17. }