namespace BinaryObjectScanner.Models.Nitro { /// /// The structure of the file allocation table is very simple, /// it's just a table of 8 byte entries /// /// public sealed class FileAllocationTableEntry { /// /// Start offset of file /// public uint StartOffset; /// /// End offset of file (after this is padding) /// public uint EndOffset; } }