mirror of
https://github.com/vdemydiuk/mtapi.git
synced 2026-07-28 19:17:48 +00:00
14 lines
223 B
C#
Executable File
14 lines
223 B
C#
Executable File
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
|
|
}
|
|
}
|