mirror of
https://github.com/vdemydiuk/mtapi.git
synced 2026-07-28 02:57:56 +00:00
18 lines
321 B
C#
Executable File
18 lines
321 B
C#
Executable File
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
namespace MtApi
|
|
{
|
|
public enum SeriesIdentifier
|
|
{
|
|
MODE_OPEN = 0,
|
|
MODE_LOW = 1,
|
|
MODE_HIGH = 2,
|
|
MODE_CLOSE = 3,
|
|
MODE_VOLUME = 4,
|
|
MODE_TIME = 5
|
|
}
|
|
}
|