blob: 321b183d8aa2b7466edb08d0497e4966bea4cc7b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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);
}
}
|