mirror of
https://github.com/SabreTools/SabreTools.Models.git
synced 2026-08-01 13:38:44 +00:00
Ensure explicit getters and setters
This commit is contained in:
@@ -44,20 +44,20 @@ namespace SabreTools.Models.LinearExecutable
|
||||
/// this number of times.
|
||||
/// For <see cref="BundleType.ForwarderEntry"/>, this field is reserved for future use.
|
||||
/// </remarks>
|
||||
public byte Entries;
|
||||
public byte Entries { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// This defines the bundle type which determines the contents of the BUNDLE INFO.
|
||||
/// </summary>
|
||||
public BundleType BundleType;
|
||||
public BundleType BundleType { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// Table entries in the bundle
|
||||
/// </summary>
|
||||
#if NET48
|
||||
public EntryTableEntry[] TableEntries;
|
||||
public EntryTableEntry[] TableEntries { get; set; }
|
||||
#else
|
||||
public EntryTableEntry?[]? TableEntries;
|
||||
public EntryTableEntry?[]? TableEntries { get; set; }
|
||||
#endif
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user