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