namespace SabreTools.Models.PIC
{
///
///
public class DiscInformationUnitHeader
{
///
/// Disc Information Identifier "DI"
/// Emergency Brake Identifier "EB"
///
public string? DiscInformationIdentifier { get; set; }
///
/// Disc Information Format
///
public byte DiscInformationFormat { get; set; }
///
/// Number of DI units in each DI block
///
public byte NumberOfUnitsInBlock { get; set; }
///
/// Should be 0x00
///
public byte Reserved0 { get; set; }
///
/// DI unit Sequence Number
///
public byte SequenceNumber { get; set; }
///
/// Number of bytes in use in this DI unit
///
public byte BytesInUse { get; set; }
///
/// Should be 0x00
///
public byte Reserved1 { get; set; }
}
}