#[derive(Debug, Clone, PartialEq)]
pub struct ProductionInfo {
pub uuid: Option<String>,
pub path: Option<String>,
}
impl ProductionInfo {
pub fn new() -> Self {
Self {
uuid: None,
path: None,
}
}
pub fn with_uuid(uuid: String) -> Self {
Self {
uuid: Some(uuid),
path: None,
}
}
}
impl Default for ProductionInfo {
fn default() -> Self {
Self::new()
}
}