mirror of
https://github.com/vdemydiuk/mtapi.git
synced 2026-07-28 11:07:48 +00:00
13 lines
228 B
C#
13 lines
228 B
C#
|
|
using System;
|
||
|
|
using System.Collections.Generic;
|
||
|
|
using System.Linq;
|
||
|
|
using System.Text;
|
||
|
|
|
||
|
|
namespace MTApiService
|
||
|
|
{
|
||
|
|
public interface IMetaTraderHandler
|
||
|
|
{
|
||
|
|
void SendTickToMetaTrader(int handle);
|
||
|
|
}
|
||
|
|
}
|