sharp-trading/OrderType.cs

9 lines
94 B
C#
Raw Normal View History

2017-11-23 13:03:36 +01:00
using System;
namespace sharp.trading
{
public enum OrderType
{
BUY, SELL, UNKOWN
}
}