namespace SabreTools.Data.Models.SpoonInstaller
{
///
/// Single entry in the file table
///
/// Entry data is BZ2-compressed
public class FileEntry
{
///
/// File offset relative to the start of the file
///
public uint FileOffset { get; set; }
///
/// Compressed size of the entry
///
/// Includes headers
public uint CompressedSize { get; set; }
///
/// Uncompressed size of the entry
///
public uint UncompressedSize { get; set; }
///
/// CRC-32(?)
///
public uint Crc32 { get; set; }
///
/// Length of
///
public byte FilenameLength { get; set; }
///
/// ASCII filename
///
public string Filename { get; set; } = string.Empty;
}
}