Ensure explicit getters and setters

This commit is contained in:
Matt Nadareski
2023-09-10 21:24:10 -04:00
parent e3c5c76ee5
commit 670b8428c2
277 changed files with 2583 additions and 2584 deletions

View File

@@ -6,30 +6,30 @@ namespace SabreTools.Models.DVD
/// <summary>
/// Number of Program Chains
/// </summary>
public ushort NumberOfProgramChains;
public ushort NumberOfProgramChains { get; set; }
/// <summary>
/// Reserved
/// </summary>
#if NET48
public byte[] Reserved;
public byte[] Reserved { get; set; }
#else
public byte[]? Reserved;
public byte[]? Reserved { get; set; }
#endif
/// <summary>
/// End address (last byte of last PGC in this LU)
/// relative to VMGM_LU
/// </summary>
public uint EndAddress;
public uint EndAddress { get; set; }
/// <summary>
/// Program Chains
/// </summary>
#if NET48
public ProgramChainTableEntry[] Entries;
public ProgramChainTableEntry[] Entries { get; set; }
#else
public ProgramChainTableEntry?[]? Entries;
public ProgramChainTableEntry?[]? Entries { get; set; }
#endif
}
}