ddex_core/models/common/
mod.rs

1// core/src/models/common/mod.rs
2//! Common types shared between models
3
4mod identifier;
5mod localized;
6mod territory;
7
8pub use identifier::{Identifier, IdentifierType};
9pub use localized::LocalizedString;
10pub use territory::{TerritoryCode, Copyright, Price, ValidityPeriod};