namespace SabreTools.Data.Models.ISO9660
{
///
/// Boot Record Volume Descriptor
/// Volume Descriptor with VolumeDescriptorType = 0x00
///
///
public sealed class BootRecordVolumeDescriptor : VolumeDescriptor
{
///
/// 32-byte name of the intended system that can use this record
/// a-characters only
///
public byte[] BootSystemIdentifier { get; set; } = new byte[32];
///
/// 32-byte name of this boot system
/// a-characters only
///
public byte[] BootIdentifier { get; set; } = new byte[32];
///
/// 1997 bytes for Boot System Use, contents not defined by ISO9660
///
public byte[] BootSystemUse { get; set; } = new byte[1997];
}
}