2013-04-18 12:57:28 -07:00
|
|
|
|
using System;
|
2013-02-20 18:33:05 -07:00
|
|
|
|
|
|
|
|
|
namespace MediaBrowser.Model.Tasks
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Class TaskExecutionInfo
|
|
|
|
|
/// </summary>
|
|
|
|
|
public class TaskResult
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets or sets the start time UTC.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <value>The start time UTC.</value>
|
|
|
|
|
public DateTime StartTimeUtc { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets or sets the end time UTC.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <value>The end time UTC.</value>
|
|
|
|
|
public DateTime EndTimeUtc { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets or sets the status.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <value>The status.</value>
|
|
|
|
|
public TaskCompletionStatus Status { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets or sets the name.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <value>The name.</value>
|
|
|
|
|
public string Name { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets or sets the id.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <value>The id.</value>
|
2014-05-08 13:09:53 -07:00
|
|
|
|
public string Id { get; set; }
|
2013-07-06 14:23:32 -07:00
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets or sets the error message.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <value>The error message.</value>
|
|
|
|
|
public string ErrorMessage { get; set; }
|
2014-08-10 15:13:17 -07:00
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets or sets the long error message.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <value>The long error message.</value>
|
|
|
|
|
public string LongErrorMessage { get; set; }
|
2013-02-20 18:33:05 -07:00
|
|
|
|
}
|
|
|
|
|
}
|