mirror of
https://github.com/SabreTools/SabreTools.Models.git
synced 2026-07-23 17:22:14 +00:00
20 lines
518 B
C#
20 lines
518 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>
|
|
#if NET48
|
|
public uint[] StartingSectors { get; set; }
|
|
#else
|
|
public uint[]? StartingSectors { get; set; }
|
|
#endif
|
|
}
|
|
} |