reactive_graph_std_metadata_model/component/
id3.rs

1use crate::NAMESPACE_METADATA;
2use reactive_graph_graph::component_model;
3use reactive_graph_graph::component_ty;
4use reactive_graph_graph::properties;
5
6properties!(Id3Properties, (ID3_TALB, "id3_talb", ""));
7
8component_ty!(COMPONENT_ID3, NAMESPACE_METADATA, COMPONENT_NAME_ID3, "id3");
9
10component_model!(
11    Id3,
12    trigger,
13    get id3_talb string,
14);