9 lines
No EOL
195 B
Rust
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
|
|
} |