MtGoxTrader.Model.MtGoxDepthInfo.MtGoxDepthInfo C# (CSharp) Method

MtGoxDepthInfo() public method

public MtGoxDepthInfo ( ) : System
return System
        public MtGoxDepthInfo()
        {
            this.asks = new List<MtGoxAsk>();
            this.bids = new List<MtGoxBid>();
            this.askGroup = new List<DepthInfoItem>();
            this.bidGroup = new List<DepthInfoItem>();
        }