Skip to main content

ecitygml_core/model/core/
external_reference.rs

1#[derive(Debug, Clone, PartialEq, Eq)]
2pub struct ExternalReference {
3    pub target_resource: String,
4    pub information_system: Option<String>,
5    pub relation_type: Option<String>,
6}