namespace BurnOutSharp.Models.Compression.MSZIP
{
///
public class DeflateBlockHeader
{
///
/// Set if and only if this is the last block of the data set.
///
/// Bit 0
public bool BFINAL { get; set; }
///
/// Specifies how the data are compressed
///
/// Bits 1-2
public CompressionType BTYPE { get; set; }
}
}