示例#1
0
 public void Update(OrderBookData other)
 {
     Price  = other.Price;
     Amount = other.Amount;
 }
示例#2
0
 public OrderBookTop(OrderBookData ask, OrderBookData bid)
 {
     Ask = ask;
     Bid = bid;
 }