mirror of
https://github.com/SabreTools/SabreTools.Models.git
synced 2026-08-02 05:58:46 +00:00
Ensure explicit getters and setters
This commit is contained in:
@@ -13,15 +13,15 @@
|
||||
/// <summary>
|
||||
/// The size of the string, not including length field itself.
|
||||
/// </summary>
|
||||
public ushort Length;
|
||||
public ushort Length { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// The variable-length Unicode string data, word-aligned.
|
||||
/// </summary>
|
||||
#if NET48
|
||||
public byte[] UnicodeString;
|
||||
public byte[] UnicodeString { get; set; }
|
||||
#else
|
||||
public byte[]? UnicodeString;
|
||||
public byte[]? UnicodeString { get; set; }
|
||||
#endif
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user