1use serde::{Deserialize, Serialize}; 2 3#[derive(Serialize, Deserialize, Debug, Eq, PartialEq, Clone)] 4pub struct Formula { 5 /// Formula to evaluate for this property 6 pub expression: String, 7}