namespace BinaryObjectScanner.Models.DVD { /// public sealed class ProgramChainTable { /// /// Number of Program Chains /// public ushort NumberOfProgramChains; /// /// Reserved /// public byte[] Reserved; /// /// End address (last byte of last PGC in this LU) /// relative to VMGM_LU /// public uint EndAddress; /// /// Program Chains /// public ProgramChainTableEntry[] Entries; } }