mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-12-18 06:53:07 +03:00
19 lines
489 B
C#
19 lines
489 B
C#
|
|
using MediaBrowser.Model.Entities;
|
|||
|
|
|
|||
|
|
namespace MediaBrowser.Model.LiveTv
|
|||
|
|
{
|
|||
|
|
public class SeriesTimerQuery
|
|||
|
|
{
|
|||
|
|
/// <summary>
|
|||
|
|
/// Gets or sets the sort by - SortName, Priority
|
|||
|
|
/// </summary>
|
|||
|
|
/// <value>The sort by.</value>
|
|||
|
|
public string SortBy { get; set; }
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// Gets or sets the sort order.
|
|||
|
|
/// </summary>
|
|||
|
|
/// <value>The sort order.</value>
|
|||
|
|
public SortOrder SortOrder { get; set; }
|
|||
|
|
}
|
|||
|
|
}
|