namespace SabreTools.Models.PortableExecutable
{
///
/// 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.
///
#if NET48
public FontDirEntry Entry { get; set; }
#else
public FontDirEntry? Entry { get; set; }
#endif
}
}