namespace SabreTools.Data.Models.Metadata
{
///
/// Format-agnostic representation of a full metadata file
///
/// TODO: ICloneable
/// TODO: IComparable
public class MetadataFile
{
public Header? Header { get; set; }
public InfoSource? InfoSource { get; set; }
public Machine[]? Machine { get; set; }
}
}