using System;
namespace Krs.Ats.IBNet.Orders
{
///
/// Limit Order is a container.
/// In the future this should implement the default members
/// of the order class for a limit order.
///
[Serializable()]
public class LimitOrder : Order
{
///
/// For Future Use
///
public LimitOrder()
{
}
}
}