yavsc/web/Admin/TaskOutput.cs

12 lines
212 B
C#
Raw Normal View History

2014-07-16 20:35:03 +02:00
using System;
using System.ComponentModel;
namespace Yavsc.Admin
{
public class TaskOutput {
public string Message { get; set; }
public string Error { get; set; }
public int ExitCode { get; set; }
}
}