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