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