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