namespace SabreTools.Data.Models.ISO9660
{
///
/// Primary Volume Descriptor
/// Volume Descriptor with VolumeDescriptorType = 0x01
///
///
public sealed class PrimaryVolumeDescriptor : BaseVolumeDescriptor
{
///
/// 1 unused byte at offset 7, should be 0x00
/// Note: This is used for VolumeFlags on SupplementaryVolumeDescriptor
///
public byte UnusedByte { get; set; }
///
/// 32 unused bytes at offset 88, should be all 0x00
/// Note: These is used for EscapeSequences on SupplementaryVolumeDescriptor
///
public byte[] Unused32Bytes { get; set; } = new byte[32];
}
}