我有这两个代表一些股票数据的类。他们没有任何行为。这些类有一些公共数据,如 ExchangeSymbol、MySymbol 和 Time。您认为将这些抽象为基类是个好主意吗?请分享你的想法。
class SymbolData
{
public string ExchangeSymbol { get; set; }
public string MySymbol { get; set; }
public double Price { get; set; }
public int Volume { get; set; }
public string Time { get; set; }
}
class EquityQuoteData
{
public string ExchangeSymbol { get; set; }
public string MySymbol { get; set; }
public double AskPrice { get; set; }
public double BidPrice { get; set; }
public int AskVolumne { get; set; }
public int BidVolumne { get; set; }
public string Time { get; set; }
}