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/TaskResult.cs | 58 ---------------------------------- 1 file changed, 58 deletions(-) delete mode 100644 MediaBrowser.Model/Tasks/TaskResult.cs (limited to 'MediaBrowser.Model/Tasks/TaskResult.cs') diff --git a/MediaBrowser.Model/Tasks/TaskResult.cs b/MediaBrowser.Model/Tasks/TaskResult.cs deleted file mode 100644 index 39eacdf66..000000000 --- a/MediaBrowser.Model/Tasks/TaskResult.cs +++ /dev/null @@ -1,58 +0,0 @@ -using System; - -namespace MediaBrowser.Model.Tasks -{ - /// - /// Class TaskExecutionInfo - /// - public class TaskResult - { - /// - /// Gets or sets the start time UTC. - /// - /// The start time UTC. - public DateTime StartTimeUtc { get; set; } - - /// - /// Gets or sets the end time UTC. - /// - /// The end time UTC. - public DateTime EndTimeUtc { get; set; } - - /// - /// Gets or sets the status. - /// - /// The status. - public TaskCompletionStatus Status { get; set; } - - /// - /// Gets or sets the name. - /// - /// The name. - public string Name { get; set; } - - /// - /// Gets or sets the key. - /// - /// The key. - public string Key { get; set; } - - /// - /// Gets or sets the id. - /// - /// The id. - public string Id { get; set; } - - /// - /// Gets or sets the error message. - /// - /// The error message. - public string ErrorMessage { get; set; } - - /// - /// Gets or sets the long error message. - /// - /// The long error message. - public string LongErrorMessage { get; set; } - } -} -- cgit v1.2.3