namespace SabreTools.Models.MoPaQ
{
///
/// Block table contains informations about file sizes and way of their storage within
/// the archive. It also contains the position of file content in the archive. Size
/// of block table entry is (like hash table entry). The block table is also encrypted.
///
///
public sealed class BlockEntry
{
///
/// Offset of the beginning of the file data, relative to the beginning of the archive.
///
public uint FilePosition { get; set; }
///
/// Compressed file size
///
public uint CompressedSize { get; set; }
///
/// Size of uncompressed file
///
public uint UncompressedSize { get; set; }
///
/// Flags for the file.
///
public FileFlags Flags { get; set; }
}
}