namespace SabreTools.Data.Models.PKZIP
{
///
/// The following is the layout of the OS/2 attributes "extra"
/// block. (Last Revision 09/05/95)
///
/// The OS/2 extended attribute structure (FEA2LIST) is
/// compressed and then stored in its entirety within this
/// structure. There will only ever be one "block" of data in
/// VarFields[].
///
/// Header ID = 0x0009
///
public class OS2ExtraField : ExtensibleDataField
{
///
/// Uncompressed Block Size
///
public uint UncompressedBlockSize { get; set; }
///
/// Compression type
///
public ushort CompressionType { get; set; }
///
/// CRC value for uncompress block
///
public uint CRC32 { get; set; }
///
/// Compressed block
///
public byte[] Data { get; set; } = [];
}
}