From a86b71899ec52c44ddc6c3018e8cc5e9d7ff4d62 Mon Sep 17 00:00:00 2001 From: Andrew Rabert Date: Thu, 27 Dec 2018 18:27:57 -0500 Subject: Add GPL modules --- MediaBrowser.Model/Tasks/TaskResult.cs | 58 ++++++++++++++++++++++++++++++++++ 1 file changed, 58 insertions(+) create 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 new file mode 100644 index 000000000..39eacdf66 --- /dev/null +++ b/MediaBrowser.Model/Tasks/TaskResult.cs @@ -0,0 +1,58 @@ +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