namespace SabreTools.Models.GCF { /// public sealed class FragmentationMapHeader { /// /// Number of data blocks. /// public uint BlockCount { get; set; } /// /// The index of the first unused fragmentation map entry. /// public uint FirstUnusedEntry { get; set; } /// /// The block entry terminator; 0 = 0x0000ffff or 1 = 0xffffffff. /// public uint Terminator { get; set; } /// /// Header checksum. /// public uint Checksum { get; set; } } }