blob: 40f532774c4c58acf6ecb634b92d33c35ee427ca (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
namespace Gestor.Model.API;
public class Parameters
{
public bool Beta { get; set; }
public int Type { get; set; }
public string Application { get; set; }
public string Directory { get; set; }
public string Arguments { get; set; }
public bool Run { get; set; }
}
|