namespace BinaryObjectScanner.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;
///
/// The FONTDIRENTRY structure for the specified font directly follows the DIRENTRY structure
/// for that font.
///
public FontDirEntry Entry;
}
}