using System; using System.Runtime.CompilerServices; namespace Gestor.Model.API { public class Parameters { public string Application { get; set; } public string Arguments { get; set; } public bool Beta { get; set; } public string Directory { get; set; } public bool Run { get; set; } public int Type { get; set; } public Parameters() { } } }