mirror of
				https://github.com/jellyfin/jellyfin.git
				synced 2025-11-04 03:27:21 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			22 lines
		
	
	
		
			513 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			22 lines
		
	
	
		
			513 B
		
	
	
	
		
			C#
		
	
	
	
	
	
#pragma warning disable CS1591
 | 
						|
 | 
						|
using Jellyfin.Data.Enums;
 | 
						|
 | 
						|
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; }
 | 
						|
    }
 | 
						|
}
 |