use crate::models::{
places::Location,
time::{DSTEntry, Utc},
};
use serde::Deserialize;
#[derive(Deserialize)]
pub struct ConvertTimeResponse {
pub utc: Utc,
pub locations: Vec<Location>,
}
#[derive(Deserialize)]
pub struct DSTListResponse {
pub dstlist: Vec<DSTEntry>,
}
#[derive(Deserialize)]
pub struct TimeserviceResponse {
pub locations: Vec<Location>,
}