namespace SabreTools.Models.GCF { /// /// Part of version 5 but not version 6. /// /// public sealed class BlockEntryMapHeader { /// /// Number of data blocks. /// public uint BlockCount { get; set; } /// /// Index of the first block entry. /// public uint FirstBlockEntryIndex { get; set; } /// /// Index of the last block entry. /// public uint LastBlockEntryIndex { get; set; } /// /// Reserved /// public uint Dummy0 { get; set; } /// /// Header checksum. /// public uint Checksum { get; set; } } }