mirror of
https://github.com/SabreTools/BinaryObjectScanner.git
synced 2026-02-11 05:35:15 +00:00
21 lines
494 B
C#
21 lines
494 B
C#
namespace BinaryObjectScanner.Models.DVD
|
|
{
|
|
/// <see href="https://dvd.sourceforge.net/dvdinfo/ifo_vmg.html"/>
|
|
public sealed class ParentalManagementMasksTableEntry
|
|
{
|
|
/// <summary>
|
|
/// Country code
|
|
/// </summary>
|
|
public ushort CountryCode;
|
|
|
|
/// <summary>
|
|
/// Reserved
|
|
/// </summary>
|
|
public byte[] Reserved;
|
|
|
|
/// <summary>
|
|
/// Offset to PTL_MAIT
|
|
/// </summary>
|
|
public uint Offset;
|
|
}
|
|
} |