yavsc/yavscModel/WorkFlow/TaskOutput.cs

29 lines
565 B
C#

10 years ago
using System;
using System.ComponentModel;
namespace Yavsc.Model.Admin
10 years ago
{
/// <summary>
/// Task output.
/// </summary>
10 years ago
public class TaskOutput {
/// <summary>
/// Gets or sets the message.
/// </summary>
/// <value>The message.</value>
10 years ago
public string Message { get; set; }
/// <summary>
/// Gets or sets the error.
/// </summary>
/// <value>The error.</value>
10 years ago
public string Error { get; set; }
/// <summary>
/// Gets or sets the exit code.
/// </summary>
/// <value>The exit code.</value>
10 years ago
public int ExitCode { get; set; }
}
}