use alloc::string::String;
use musicxml_internal::*;
use musicxml_macros::*;
/// The [Pf] element represents a piano forte dynamic marking.
///
/// 
#[derive(Debug, PartialEq, Eq, ElementDeserialize, ElementSerialize)]
pub struct Pf {
/// Element-specific attributes
pub attributes: (),
/// Element-specific content
pub content: (),
}