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

@@ -16,15 +16,15 @@ namespace SabreTools.Models.NewExecutable
/// indicates the end of the resource type and name string, also
/// the end of the resource table.
/// </summary>
public byte Length;
public byte Length { get; set; }
/// <summary>
/// ASCII text of the type or name string.
/// </summary>
#if NET48
public byte[] Text;
public byte[] Text { get; set; }
#else
public byte[]? Text;
public byte[]? Text { get; set; }
#endif
}
}