using MediaBrowser.Model.Entities; namespace MediaBrowser.Model.LiveTv { public class SeriesTimerQuery { /// /// Gets or sets the sort by - SortName, Priority /// /// The sort by. public string SortBy { get; set; } /// /// Gets or sets the sort order. /// /// The sort order. public SortOrder SortOrder { get; set; } } }