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

@@ -9,26 +9,26 @@ namespace SabreTools.Models.GCF
/// <summary>
/// Number of data blocks.
/// </summary>
public uint BlockCount;
public uint BlockCount { get; set; }
/// <summary>
/// Index of the first block entry.
/// </summary>
public uint FirstBlockEntryIndex;
public uint FirstBlockEntryIndex { get; set; }
/// <summary>
/// Index of the last block entry.
/// </summary>
public uint LastBlockEntryIndex;
public uint LastBlockEntryIndex { get; set; }
/// <summary>
/// Reserved
/// </summary>
public uint Dummy0;
public uint Dummy0 { get; set; }
/// <summary>
/// Header checksum.
/// </summary>
public uint Checksum;
public uint Checksum { get; set; }
}
}