2014-07-16 20:35:03 +02:00
|
|
|
using System;
|
|
|
|
|
using System.ComponentModel;
|
|
|
|
|
|
|
|
|
|
namespace Yavsc.Admin
|
|
|
|
|
{
|
2015-07-17 05:07:05 +02:00
|
|
|
|
2015-01-27 00:41:20 +01:00
|
|
|
/// <summary>
|
|
|
|
|
/// Task output.
|
|
|
|
|
/// </summary>
|
2014-07-16 20:35:03 +02:00
|
|
|
public class TaskOutput {
|
2015-01-27 00:41:20 +01:00
|
|
|
/// <summary>
|
|
|
|
|
/// Gets or sets the message.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <value>The message.</value>
|
2014-07-16 20:35:03 +02:00
|
|
|
public string Message { get; set; }
|
2015-01-27 00:41:20 +01:00
|
|
|
/// <summary>
|
|
|
|
|
/// Gets or sets the error.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <value>The error.</value>
|
2014-07-16 20:35:03 +02:00
|
|
|
public string Error { get; set; }
|
2015-01-27 00:41:20 +01:00
|
|
|
/// <summary>
|
|
|
|
|
/// Gets or sets the exit code.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <value>The exit code.</value>
|
2014-07-16 20:35:03 +02:00
|
|
|
public int ExitCode { get; set; }
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|