mirror of
https://github.com/vdemydiuk/mtapi.git
synced 2026-07-28 19:17:48 +00:00
13 lines
298 B
C#
Executable File
13 lines
298 B
C#
Executable File
using System.Diagnostics.CodeAnalysis;
|
|
|
|
namespace MtApi5.Requests
|
|
{
|
|
[SuppressMessage("ReSharper", "InconsistentNaming")]
|
|
internal enum RequestType
|
|
{
|
|
Unknown = 0,
|
|
CopyTicks = 1,
|
|
iCustom = 2,
|
|
OrderSend = 3
|
|
}
|
|
} |