mirror of
https://github.com/SabreTools/SabreTools.Models.git
synced 2026-07-23 09:12:14 +00:00
25 lines
593 B
C#
25 lines
593 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 { get; set; }
|
|
|
|
/// <summary>
|
|
/// Reserved
|
|
/// </summary>
|
|
#if NET48
|
|
public byte[] Reserved { get; set; }
|
|
#else
|
|
public byte[]? Reserved { get; set; }
|
|
#endif
|
|
|
|
/// <summary>
|
|
/// Offset to PTL_MAIT
|
|
/// </summary>
|
|
public uint Offset { get; set; }
|
|
}
|
|
} |