trade_product_location.rs (471B)
1 use crate::gcs_location::GcsLocationQueryBindValues; 2 use crate::trade_product::TradeProductQueryBindValues; 3 use radroots_types::types::IResultPass; 4 use serde::{Deserialize, Serialize}; 5 6 #[derive(Clone, Deserialize, Serialize)] 7 pub struct ITradeProductLocationRelation { 8 pub trade_product: TradeProductQueryBindValues, 9 pub gcs_location: GcsLocationQueryBindValues, 10 } 11 12 pub struct ITradeProductLocationResolveTs; 13 pub type ITradeProductLocationResolve = IResultPass;