1use crate::records::property_type_path::Property; 2 3impl Property { 4 pub fn write(name: &str) -> Self { 5 Property::property_string_bool(name, false) 6 } 7}