namespace SabreTools.Models.CHD
{
///
public class CompressedMapEntryV5
{
///
/// Compression type
///
public byte Compression { get; set; }
///
/// Compressed length
///
/// Actually UInt24
public uint CompLength { get; set; }
///
/// Offset
///
/// Actually UInt48
public ulong Offset { get; set; }
///
/// CRC-16 of the data
///
public ushort CRC { get; set; }
}
}