using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Tango.Console.Network { public class ConsoleCommandRequest { public String WorkingFolder { get; set; } public String Command { get; set; } public bool RunAsAdministrator { get; set; } } }