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