From 48facb797ed912e4ea6b04b17d1ff190ac2daac4 Mon Sep 17 00:00:00 2001 From: stefan Date: Wed, 12 Sep 2018 19:26:21 +0200 Subject: Update to 3.5.2 and .net core 2.1 --- MediaBrowser.Model/Tasks/TaskInfo.cs | 78 ------------------------------------ 1 file changed, 78 deletions(-) delete mode 100644 MediaBrowser.Model/Tasks/TaskInfo.cs (limited to 'MediaBrowser.Model/Tasks/TaskInfo.cs') diff --git a/MediaBrowser.Model/Tasks/TaskInfo.cs b/MediaBrowser.Model/Tasks/TaskInfo.cs deleted file mode 100644 index 8792ce952..000000000 --- a/MediaBrowser.Model/Tasks/TaskInfo.cs +++ /dev/null @@ -1,78 +0,0 @@ -using System.Collections.Generic; - -namespace MediaBrowser.Model.Tasks -{ - /// - /// Class TaskInfo - /// - public class TaskInfo - { - /// - /// Gets or sets the name. - /// - /// The name. - public string Name { get; set; } - - /// - /// Gets or sets the state of the task. - /// - /// The state of the task. - public TaskState State { get; set; } - - /// - /// Gets or sets the progress. - /// - /// The progress. - public double? CurrentProgressPercentage { get; set; } - - /// - /// Gets or sets the id. - /// - /// The id. - public string Id { get; set; } - - /// - /// Gets or sets the last execution result. - /// - /// The last execution result. - public TaskResult LastExecutionResult { get; set; } - - /// - /// Gets or sets the triggers. - /// - /// The triggers. - public TaskTriggerInfo[] Triggers { get; set; } - - /// - /// Gets or sets the description. - /// - /// The description. - public string Description { get; set; } - - /// - /// Gets or sets the category. - /// - /// The category. - public string Category { get; set; } - - /// - /// Gets or sets a value indicating whether this instance is hidden. - /// - /// true if this instance is hidden; otherwise, false. - public bool IsHidden { get; set; } - - /// - /// Gets or sets the key. - /// - /// The key. - public string Key { get; set; } - - /// - /// Initializes a new instance of the class. - /// - public TaskInfo() - { - Triggers = new TaskTriggerInfo[]{}; - } - } -} -- cgit v1.2.3