mirror of
https://github.com/SabreTools/SabreTools.Models.git
synced 2026-07-23 09:12:14 +00:00
16 lines
443 B
C#
16 lines
443 B
C#
namespace SabreTools.Models.DVD
|
|
{
|
|
/// <see href="https://dvd.sourceforge.net/dvdinfo/ifo.html"/>
|
|
public sealed class VOBUAddressMap
|
|
{
|
|
/// <summary>
|
|
/// End address (last byte of last entry)
|
|
/// </summary>
|
|
public uint EndAddress { get; set; }
|
|
|
|
/// <summary>
|
|
/// Starting sector within VOB of nth VOBU
|
|
/// </summary>
|
|
public uint[]? StartingSectors { get; set; }
|
|
}
|
|
} |