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 FontGroupHeader
{
///
/// The number of individual fonts associated with this resource.
///
public ushort NumberOfFonts { get; set; }
///
/// A structure that contains a unique ordinal identifier for each font in the resource. The DE
/// member is a placeholder for the variable-length array of DIRENTRY structures.
///
#if NET48
public DirEntry[] DE { get; set; }
#else
public DirEntry?[]? DE { get; set; }
#endif
}
}