yavsc/web/Admin/TaskOutput.cs

27 lines
558 B
C#
Raw Normal View History

2014-07-16 20:35:03 +02:00
using System;
using System.ComponentModel;
namespace Yavsc.Admin
{
/// <summary>
/// Task output.
/// </summary>
2014-07-16 20:35:03 +02:00
public class TaskOutput {
/// <summary>
/// Gets or sets the message.
/// </summary>
/// <value>The message.</value>
2014-07-16 20:35:03 +02:00
public string Message { get; set; }
/// <summary>
/// Gets or sets the error.
/// </summary>
/// <value>The error.</value>
2014-07-16 20:35:03 +02:00
public string Error { get; set; }
/// <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; }
}
}