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