namespace SabreTools.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 { get; set; } /// /// End offset of file (after this is padding) /// public uint EndOffset { get; set; } } }