sharp-trading/OrderType.cs

9 lines
94 B
C#

using System;
namespace sharp.trading
{
public enum OrderType
{
BUY, SELL, UNKOWN
}
}