namespace SabreTools.Models.DVD
{
///
public sealed class CellAddressTable
{
///
/// Number of VOB IDs
///
public ushort NumberOfVOBIDs { get; set; }
///
/// Reserved
///
#if NET48
public byte[] Reserved { get; set; }
#else
public byte[]? Reserved { get; set; }
#endif
///
/// End address (last byte of last entry)
///
public uint EndAddress { get; set; }
///
/// 12-byte entries
///
#if NET48
public CellAddressTableEntry[] Entries { get; set; }
#else
public CellAddressTableEntry?[]? Entries { get; set; }
#endif
}
}