diff --git a/BurnOutSharp.Models/PortableExecutable/COFFRelocation.cs b/BurnOutSharp.Models/PortableExecutable/COFFRelocation.cs
new file mode 100644
index 00000000..adece90b
--- /dev/null
+++ b/BurnOutSharp.Models/PortableExecutable/COFFRelocation.cs
@@ -0,0 +1,46 @@
+using System.Runtime.InteropServices;
+
+namespace BurnOutSharp.Models.PortableExecutable
+{
+ ///
+ /// Object files contain COFF relocations, which specify how the section data
+ /// should be modified when placed in the image file and subsequently loaded
+ /// into memory.
+ ///
+ /// mage files do not contain COFF relocations, because all referenced symbols
+ /// have already been assigned addresses in a flat address space. An image
+ /// contains relocation information in the form of base relocations in the
+ /// .reloc section (unless the image has the IMAGE_FILE_RELOCS_STRIPPED attribute).
+ ///
+ /// For each section in an object file, an array of fixed-length records holds
+ /// the section's COFF relocations. The position and length of the array are
+ /// specified in the section header.
+ ///
+ ///
+ [StructLayout(LayoutKind.Sequential)]
+ public class COFFRelocation
+ {
+ ///
+ /// The address of the item to which relocation is applied. This is the
+ /// offset from the beginning of the section, plus the value of the
+ /// section's RVA/Offset field. See Section Table (Section Headers).
+ /// For example, if the first byte of the section has an address of 0x10,
+ /// the third byte has an address of 0x12.
+ ///
+ public uint VirtualAddress;
+
+ ///
+ /// A zero-based index into the symbol table. This symbol gives the address
+ /// that is to be used for the relocation. If the specified symbol has section
+ /// storage class, then the symbol's address is the address with the first
+ /// section of the same name.
+ ///
+ public uint SymbolTableIndex;
+
+ ///
+ /// A value that indicates the kind of relocation that should be performed.
+ /// Valid relocation types depend on machine type.
+ ///
+ public RelocationType TypeIndicator;
+ }
+}
diff --git a/BurnOutSharp.Models/PortableExecutable/SectionHeader.cs b/BurnOutSharp.Models/PortableExecutable/SectionHeader.cs
index b8a64569..bd58dc3c 100644
--- a/BurnOutSharp.Models/PortableExecutable/SectionHeader.cs
+++ b/BurnOutSharp.Models/PortableExecutable/SectionHeader.cs
@@ -100,5 +100,10 @@ namespace BurnOutSharp.Models.PortableExecutable
/// The flags that describe the characteristics of the section.
///
public SectionFlags Characteristics;
+
+ ///
+ /// COFF Relocations (Object Only)
+ ///
+ public COFFRelocation[] COFFRelocations;
}
}