mirror of
				https://github.com/jellyfin/jellyfin.git
				synced 2025-11-03 19:17:24 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			79 lines
		
	
	
		
			2.2 KiB
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			79 lines
		
	
	
		
			2.2 KiB
		
	
	
	
		
			C#
		
	
	
	
	
	
using System.Collections.Generic;
 | 
						|
 | 
						|
namespace MediaBrowser.Model.Tasks
 | 
						|
{
 | 
						|
    /// <summary>
 | 
						|
    /// Class TaskInfo
 | 
						|
    /// </summary>
 | 
						|
    public class TaskInfo
 | 
						|
    {
 | 
						|
        /// <summary>
 | 
						|
        /// Gets or sets the name.
 | 
						|
        /// </summary>
 | 
						|
        /// <value>The name.</value>
 | 
						|
        public string Name { get; set; }
 | 
						|
 | 
						|
        /// <summary>
 | 
						|
        /// Gets or sets the state of the task.
 | 
						|
        /// </summary>
 | 
						|
        /// <value>The state of the task.</value>
 | 
						|
        public TaskState State { get; set; }
 | 
						|
 | 
						|
        /// <summary>
 | 
						|
        /// Gets or sets the progress.
 | 
						|
        /// </summary>
 | 
						|
        /// <value>The progress.</value>
 | 
						|
        public double? CurrentProgressPercentage { get; set; }
 | 
						|
 | 
						|
        /// <summary>
 | 
						|
        /// Gets or sets the id.
 | 
						|
        /// </summary>
 | 
						|
        /// <value>The id.</value>
 | 
						|
        public string Id { get; set; }
 | 
						|
 | 
						|
        /// <summary>
 | 
						|
        /// Gets or sets the last execution result.
 | 
						|
        /// </summary>
 | 
						|
        /// <value>The last execution result.</value>
 | 
						|
        public TaskResult LastExecutionResult { get; set; }
 | 
						|
 | 
						|
        /// <summary>
 | 
						|
        /// Gets or sets the triggers.
 | 
						|
        /// </summary>
 | 
						|
        /// <value>The triggers.</value>
 | 
						|
        public List<TaskTriggerInfo> Triggers { get; set; }
 | 
						|
 | 
						|
        /// <summary>
 | 
						|
        /// Gets or sets the description.
 | 
						|
        /// </summary>
 | 
						|
        /// <value>The description.</value>
 | 
						|
        public string Description { get; set; }
 | 
						|
 | 
						|
        /// <summary>
 | 
						|
        /// Gets or sets the category.
 | 
						|
        /// </summary>
 | 
						|
        /// <value>The category.</value>
 | 
						|
        public string Category { get; set; }
 | 
						|
 | 
						|
        /// <summary>
 | 
						|
        /// Gets or sets a value indicating whether this instance is hidden.
 | 
						|
        /// </summary>
 | 
						|
        /// <value><c>true</c> if this instance is hidden; otherwise, <c>false</c>.</value>
 | 
						|
        public bool IsHidden { get; set; }
 | 
						|
 | 
						|
        /// <summary>
 | 
						|
        /// Gets or sets the key.
 | 
						|
        /// </summary>
 | 
						|
        /// <value>The key.</value>
 | 
						|
        public string Key { get; set; }
 | 
						|
 | 
						|
        /// <summary>
 | 
						|
        /// Initializes a new instance of the <see cref="TaskInfo"/> class.
 | 
						|
        /// </summary>
 | 
						|
        public TaskInfo()
 | 
						|
        {
 | 
						|
            Triggers = new List<TaskTriggerInfo>();
 | 
						|
        }
 | 
						|
    }
 | 
						|
}
 |