mirror of
https://github.com/vdemydiuk/mtapi.git
synced 2026-07-28 11:07:48 +00:00
11 lines
207 B
C#
Executable File
11 lines
207 B
C#
Executable File
using System.Collections.Generic;
|
|
|
|
namespace MTApiService
|
|
{
|
|
public interface IMtApiServer
|
|
{
|
|
MtResponse SendCommand(MtCommand command);
|
|
List<MtQuote> GetQuotes();
|
|
}
|
|
}
|