namespace SabreTools.Data.Models.PCEngineCDROM
{
///
/// This is the standard header of PC Engine CD-ROM
/// Located at the first non-zero user data sector of the first data track
///
public sealed class Header
{
///
/// Standard sector of data to verify the disc
///
public BootSector BootSector { get; set; } = new();
///
/// Initial Program Loader for the PC Engine
///
public IPL IPL { get; set; } = new();
}
}