Files
SabreTools.Serialization/SabreTools.Data.Models/Metadata/MetadataFile.cs
2026-04-04 21:17:28 -04:00

18 lines
417 B
C#

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