namespace BinaryObjectScanner.Models.GCF
{
///
public sealed class DataBlockHeader
{
///
/// GCF file version. This field is not part of all file versions.
///
public uint LastVersionPlayed;
///
/// Number of data blocks.
///
public uint BlockCount;
///
/// Size of each data block in bytes.
///
public uint BlockSize;
///
/// Offset to first data block.
///
public uint FirstBlockOffset;
///
/// Number of data blocks that contain data.
///
public uint BlocksUsed;
///
/// Header checksum.
///
public uint Checksum;
}
}