namespace SabreTools.Models.DVD
{
///
public sealed class VOBUAddressMap
{
///
/// End address (last byte of last entry)
///
public uint EndAddress { get; set; }
///
/// Starting sector within VOB of nth VOBU
///
#if NET48
public uint[] StartingSectors { get; set; }
#else
public uint[]? StartingSectors { get; set; }
#endif
}
}