MtGoxTrader.Model.MtGoxDepthInfo.MtGoxDepthInfo C# (CSharp) 메소드

MtGoxDepthInfo() 공개 메소드

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