namespace SabreTools.IO.Compression.Deflate
{
///
/// Represents information about a DEFLATE stream
///
public class DeflateInfo
{
///
/// Size of the deflated data
///
/// Set to a value less than 0 to ignore
public long InputSize { get; set; }
///
/// Size of the inflated data
///
/// Set to a value less than 0 to ignore
public long OutputSize { get; set; }
///
/// CRC-32 of the inflated data
///
/// Set to a value of 0 to ignore
public uint Crc32 { get; set; }
}
}