use musicxml_internal::{DatatypeDeserializer, DatatypeSerializer};
use musicxml_macros::{DatatypeDeserialize, DatatypeSerialize};
/// Indicates the symbol used to represent the interchangeable aspect of dual time signatures.
#[derive(Debug, PartialEq, Eq, DatatypeDeserialize, DatatypeSerialize)]
pub enum TimeRelation {
/// 
Bracket,
/// 
Equals,
/// 
Hyphen,
/// 
Parentheses,
/// 
Slash,
/// 
Space,
}