Files
mtapi/MTApiService/IMtApiServer.cs

11 lines
207 B
C#
Executable File

using System.Collections.Generic;
namespace MTApiService
{
public interface IMtApiServer
{
MtResponse SendCommand(MtCommand command);
List<MtQuote> GetQuotes();
}
}