namespace SabreTools.Data.Models.PortableExecutable.Resource.Entries { /// /// Contains the information necessary for an application to access a specific font. The structure /// definition provided here is for explanation only; it is not present in any standard header file. /// /// public sealed class DirEntry { /// /// A unique ordinal identifier for an individual font in a font resource group. /// public ushort FontOrdinal { get; set; } /// /// The FONTDIRENTRY structure for the specified font directly follows the DIRENTRY structure /// for that font. /// public FontDirEntry Entry { get; set; } = new(); } }