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
///
public uint[]? StartingSectors { get; set; }
}
}