use super::IncludedExcluded;
use serde::Deserialize;
#[derive(Debug, Deserialize)]
pub struct Weekdays {
pub r#type: IncludedExcluded,
pub count: i32,
pub mon: i32,
pub tue: i32,
pub wed: i32,
pub thu: i32,
pub fri: i32,
pub sat: i32,
pub sun: i32,
}