feat: domo_lib

This commit is contained in:
Strix 2023-11-30 21:52:56 +01:00
parent 7999ac6103
commit 2af49e31bc
No known key found for this signature in database
GPG key ID: 5F35B3B8537287A7
5 changed files with 129 additions and 0 deletions

View file

@ -0,0 +1,11 @@
use domo_proto::data_types::DataType;
pub struct Property {
/// Is the property descriptive?
pub descriptive: bool,
pub name: String,
pub data: DataType
}
impl Property {
}