Files
mtapi/MtApi/OrderSelectMode.cs
T

14 lines
223 B
C#
Raw Normal View History

2014-10-31 09:05:52 +02:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace MtApi
{
public enum OrderSelectMode
{
SELECT_BY_POS = 0,
SELECT_BY_TICKET = 1
}
}