mirror of
https://github.com/SabreTools/SabreTools.Models.git
synced 2026-09-24 23:57:18 +00:00
Ensure explicit getters and setters
This commit is contained in:
@@ -10,16 +10,16 @@
|
||||
/// <summary>
|
||||
/// A unique ordinal identifier for an individual font in a font resource group.
|
||||
/// </summary>
|
||||
public ushort FontOrdinal;
|
||||
public ushort FontOrdinal { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// The FONTDIRENTRY structure for the specified font directly follows the DIRENTRY structure
|
||||
/// for that font.
|
||||
/// </summary>
|
||||
#if NET48
|
||||
public FontDirEntry Entry;
|
||||
public FontDirEntry Entry { get; set; }
|
||||
#else
|
||||
public FontDirEntry? Entry;
|
||||
public FontDirEntry? Entry { get; set; }
|
||||
#endif
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user