namespace SabreTools.Models.Compression.LZ
{
///
/// Format of first 14 byte of LZ compressed file
///
///
public sealed class FileHeaader
{
#if NET48
public string Magic;
#else
public string? Magic;
#endif
public byte CompressionType;
public char LastChar;
public uint RealLength;
}
}