mirror of
				https://github.com/jellyfin/jellyfin.git
				synced 2025-11-04 03:27:21 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			15 lines
		
	
	
		
			350 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
		
			350 B
		
	
	
	
		
			C#
		
	
	
	
	
	
namespace MediaBrowser.Model.Tasks
 | 
						|
{
 | 
						|
    /// <summary>
 | 
						|
    /// Class containing options for tasks.
 | 
						|
    /// </summary>
 | 
						|
    public class TaskOptions
 | 
						|
    {
 | 
						|
        /// <summary>
 | 
						|
        /// Gets or sets the maximum runtime in ticks.
 | 
						|
        /// </summary>
 | 
						|
        /// <value>The ticks.</value>
 | 
						|
        public long? MaxRuntimeTicks { get; set; }
 | 
						|
    }
 | 
						|
}
 |