use serde::Deserialize;
use crate::{Float, Int32};
#[derive(Deserialize, Debug)]
pub struct Station {
pub station_id: Int32,
pub system_id: Int32,
pub name: String,
pub office_rental_cost: Float,
pub reprocessing_efficiency: Float,
pub reprocessing_stations_take: Float,
pub services: Vec<String>,
pub type_id: Int32,
}