use crate::base::Property;
#[derive(Debug, Clone)]
pub enum PropertyChange {
OnNeither { property: Property },
OnlyA {
property: Property,
value_a: String,
previous: Option<String>,
},
OnlyB {
property: Property,
value_b: String,
previous: Option<String>,
},
OnBoth {
property: Property,
value_a: String,
value_b: String,
previous: Option<String>,
},
}