domo/domo_lib/src/node/property.rs
2023-11-05 20:52:51 +01:00

6 lines
No EOL
108 B
Rust

use domo_proto::data_types::DataType;
pub struct Property {
pub name: String,
pub value: DataType
}