using System;
using System.ComponentModel;
namespace Krs.Ats.IBNet
{
///
/// Describes wether a security was bought or sold in an execution.
/// The past tense equivalent of ActionSide.
///
[Serializable()]
public enum ExecutionSide
{
///
/// Securities were bought.
///
[Description("BOT")] Bought,
///
/// Securities were sold.
///
[Description("SLD")] Sold
}
}