use serde::{Deserialize, Serialize};
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct GoogleLatLng {
pub lat: f64,
pub lng: f64,
}
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct GoogleBounds {
pub northeast: GoogleLatLng,
pub southwest: GoogleLatLng,
}