mirror of
https://github.com/vdemydiuk/mtapi.git
synced 2026-07-28 19:17:48 +00:00
14 lines
219 B
C#
Executable File
14 lines
219 B
C#
Executable File
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
namespace MtApi
|
|
{
|
|
public enum OrderSelectSource
|
|
{
|
|
MODE_TRADES = 0,
|
|
MODE_HISTORY = 1
|
|
}
|
|
}
|