use clap::Args;
use getset::Getters;
#[derive(Debug, Args, Getters, PartialEq)]
pub struct PeriodOffInput {
#[arg(
long,
short = 'p',
default_value = None,
help = "The period for which you wanna record a period off, e.g. `2025-05`."
)]
#[getset(get = "pub")]
period: String,
}