namespace AssetManager.Models.DTOs; /// /// 市场价格响应 /// public class MarketPriceResponse { /// /// 标的代码 /// public string Symbol { get; set; } /// /// 价格 /// public decimal Price { get; set; } /// /// 时间戳 /// public DateTime Timestamp { get; set; } /// /// 资产类型 /// public string AssetType { get; set; } } /// /// 市场数据响应 /// public class MarketDataResponse { /// /// 标的代码 /// public string Symbol { get; set; } /// /// 时间戳 /// public DateTime Timestamp { get; set; } /// /// 开盘价 /// public decimal Open { get; set; } /// /// 最高价 /// public decimal High { get; set; } /// /// 最低价 /// public decimal Low { get; set; } /// /// 收盘价 /// public decimal Close { get; set; } /// /// 成交量 /// public decimal Volume { get; set; } /// /// 资产类型 /// public string AssetType { get; set; } }