Files
mtapi/MtApi5/Requests/RequestType.cs
T

13 lines
298 B
C#
Raw Normal View History

using System.Diagnostics.CodeAnalysis;
namespace MtApi5.Requests
{
[SuppressMessage("ReSharper", "InconsistentNaming")]
internal enum RequestType
{
Unknown = 0,
CopyTicks = 1,
iCustom = 2,
OrderSend = 3
}
}