diff options
Diffstat (limited to 'Software/Visual_Studio/FSE/Tango.FSE.Common/Console/IConsoleService.cs')
| -rw-r--r-- | Software/Visual_Studio/FSE/Tango.FSE.Common/Console/IConsoleService.cs | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/Software/Visual_Studio/FSE/Tango.FSE.Common/Console/IConsoleService.cs b/Software/Visual_Studio/FSE/Tango.FSE.Common/Console/IConsoleService.cs new file mode 100644 index 000000000..321b183d8 --- /dev/null +++ b/Software/Visual_Studio/FSE/Tango.FSE.Common/Console/IConsoleService.cs @@ -0,0 +1,16 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; +using Tango.Console.Network; + +namespace Tango.FSE.Common.Console +{ + public interface IConsoleService + { + event EventHandler<GetCurrentDirectoryResponse> Initialized; + String CurrentDirectory { get; } + Task<ConsoleCommandResponse> ExecuteCommand(ConsoleCommandRequest request, TimeSpan? timeout = null); + } +} |
