Files
mtapi/MTApiService/IMtApiServer.cs
T

11 lines
207 B
C#
Raw Normal View History

using System.Collections.Generic;
2014-10-31 09:05:52 +02:00
namespace MTApiService
{
public interface IMtApiServer
{
MtResponse SendCommand(MtCommand command);
List<MtQuote> GetQuotes();
2014-10-31 09:05:52 +02:00
}
}