namespace BinaryObjectScanner.Models.Compression.MSZIP { /// /// Non-compressed blocks (BTYPE=00) /// /// public class NonCompressedBlockHeader { /// /// The number of data bytes in the block /// /// Bytes 0-1 public ushort LEN; /// /// The one's complement of LEN /// /// Bytes 2-3 public ushort NLEN; } }