#pragma warning disable CS1591 using Jellyfin.Data.Enums; 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; } } }