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