namespace SabreTools.Data.Models.ZArchive
{
///
/// Node in the FileTree representing a file
///
///
public sealed class FileEntry : FileDirectoryEntry
{
///
/// Lowest 8 bits of the file's offset
///
/// Big-endian
public uint FileOffsetLow { get; set; }
///
/// Lowest 8 bits of the file's size
///
/// Big-endian
public uint FileSizeLow { get; set; }
///
/// Highest 4 bits of the file's size
///
/// Big-endian
public ushort FileSizeHigh { get; set; }
///
/// Highest 4 bits of the file's offset
///
/// Big-endian
public ushort FileOffsetHigh { get; set; }
}
}