Files
mtapi/MtApi5/MtProtocol/ICustomRequest.cs
T

14 lines
237 B
C#
Raw Normal View History

2024-02-23 18:10:48 +02:00
namespace MtApi5.MtProtocol
{
namespace ICustomRequest
{
public enum ParametersType
{
Int = 0,
Double = 1,
String = 2,
Boolean = 3
}
}
}