mirror of
https://github.com/SabreTools/SabreTools.Models.git
synced 2026-07-25 02:02:17 +00:00
25 lines
541 B
C#
25 lines
541 B
C#
namespace SabreTools.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>
|
|
#if NET48
|
|
public byte[] Reserved;
|
|
#else
|
|
public byte[]? Reserved;
|
|
#endif
|
|
|
|
/// <summary>
|
|
/// Offset to PTL_MAIT
|
|
/// </summary>
|
|
public uint Offset;
|
|
}
|
|
} |