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