using System; using System.Collections.ObjectModel; namespace Krs.Ats.IBNet { /// /// Underlying Component Class /// [Serializable] public class UnderComp { #region Private Variables private int conId; private double delta; private double price; #endregion #region Constructor / Deconstructor /// /// Instantiate an UnderComp class /// public UnderComp() { conId = 0; delta = 0; price = 0; } #endregion #region Public Properties /// /// Contract Id /// public int ConId { get { return conId; } set { conId = value; } } /// /// Delta Value /// public double Delta { get { return delta; } set { delta = value; } } /// /// Price /// public double Price { get { return price; } set { price = value; } } #endregion } }