1 2 3 4 5 6 7
use crate::dto::raw_decimal::RawDecimal; #[derive(Debug)] pub struct RawMarketQuote { pub price: RawDecimal, pub quantity: RawDecimal, }