From e774f9a90fd812a9de8c3efe966a759bee8be703 Mon Sep 17 00:00:00 2001 From: Roy Ben Shabat Date: Wed, 11 Mar 2020 03:41:20 +0200 Subject: Working on FSE/PPC performance provider. Implemented resolution service. a lot of work! --- .../Tango.Console/Network/ConsoleCommandRequest.cs | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 Software/Visual_Studio/Tango.Console/Network/ConsoleCommandRequest.cs (limited to 'Software/Visual_Studio/Tango.Console/Network/ConsoleCommandRequest.cs') diff --git a/Software/Visual_Studio/Tango.Console/Network/ConsoleCommandRequest.cs b/Software/Visual_Studio/Tango.Console/Network/ConsoleCommandRequest.cs new file mode 100644 index 000000000..d7541506c --- /dev/null +++ b/Software/Visual_Studio/Tango.Console/Network/ConsoleCommandRequest.cs @@ -0,0 +1,15 @@ +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; } + } +} -- cgit v1.3.1