using System.Runtime.InteropServices; namespace BinaryObjectScanner.Models.NewExecutable { /// [StructLayout(LayoutKind.Sequential)] public sealed class ImportOrdinalRelocationRecord { /// /// Index into module reference table for the imported module. /// public ushort Index; /// /// Procedure ordinal number. /// public ushort Ordinal; } }