domo/domo_lib/src/node/property.rs
Raine f17bd20516
Some checks failed
ci/woodpecker/push/lib Pipeline failed
feat: state
2024-01-04 19:36:23 +01:00

9 lines
No EOL
195 B
Rust

use domo_proto::data_types::DataType;
#[derive(Debug, Clone)]
pub struct Property {
/// Is the property descriptive?
pub descriptive: bool,
pub name: String,
pub data: DataType
}