2020-02-03 17:49:27 -07:00
|
|
|
#pragma warning disable CS1591
|
|
|
|
|
2020-06-30 18:44:41 -07:00
|
|
|
using Jellyfin.Data.Enums;
|
2018-12-27 16:27:57 -07:00
|
|
|
|
|
|
|
namespace MediaBrowser.Model.LiveTv
|
|
|
|
{
|
|
|
|
public class SeriesTimerQuery
|
|
|
|
{
|
|
|
|
/// <summary>
|
2020-06-15 15:37:52 -07:00
|
|
|
/// Gets or sets the sort by - SortName, Priority.
|
2018-12-27 16:27:57 -07:00
|
|
|
/// </summary>
|
|
|
|
/// <value>The sort by.</value>
|
2020-04-05 09:10:56 -07:00
|
|
|
public string? SortBy { get; set; }
|
2018-12-27 16:27:57 -07:00
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Gets or sets the sort order.
|
|
|
|
/// </summary>
|
|
|
|
/// <value>The sort order.</value>
|
|
|
|
public SortOrder SortOrder { get; set; }
|
|
|
|
}
|
2019-01-13 12:31:15 -07:00
|
|
|
}
|