Files
jellyfin/MediaBrowser.Model/LiveTv/SeriesTimerQuery.cs

22 lines
533 B
C#
Raw Permalink Normal View History

2020-02-04 01:49:27 +01:00
#pragma warning disable CS1591
2025-03-25 15:30:22 +00:00
using Jellyfin.Database.Implementations.Enums;
2018-12-27 18:27:57 -05:00
namespace MediaBrowser.Model.LiveTv
{
public class SeriesTimerQuery
{
/// <summary>
/// Gets or sets the sort by - SortName, Priority.
2018-12-27 18:27:57 -05:00
/// </summary>
/// <value>The sort by.</value>
public string? SortBy { get; set; }
2018-12-27 18:27:57 -05:00
/// <summary>
/// Gets or sets the sort order.
/// </summary>
/// <value>The sort order.</value>
public SortOrder SortOrder { get; set; }
}
}