use serde::{Deserialize, Serialize};
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct EconomicDataPoint {
pub date: String,
pub value: f64,
}
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct EconomicData {
pub code: String,
pub data: Vec<EconomicDataPoint>,
}
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct EconomicCode {
pub code: String,
pub country: String,
pub name: String,
pub unit: String,
}