use crate::*;
#[derive(Clone, Debug)]
pub struct Args {
pub command: CommandType,
pub check: bool,
pub manifest_path: Option<String>,
pub bump_type: Option<BumpVersionType>,
pub max_retries: u32,
pub project_name: Option<String>,
pub template_type: Option<TemplateType>,
pub model_sub_type: Option<ModelSubType>,
pub component_name: Option<String>,
}