namespace SabreTools.Models.NewExecutable { /// /// The module-reference table follows the resident-name table. Each entry /// contains an offset for the module-name string within the imported- /// names table; each entry is 2 bytes long. /// /// public sealed class ModuleReferenceTableEntry { /// /// Offset within Imported Names Table to referenced module name string. /// public ushort Offset { get; set; } } }