namespace BinaryObjectScanner.Models.Nitro
{
///
/// Each folder in the file system has a 8 byte long entry.
/// The first one is for the root folder, and acts as an entry
/// point to the file system.
///
///
public sealed class FolderAllocationTableEntry
{
///
/// Start offset of folder contents within Name List
/// relative to start of NameTable
///
public uint StartOffset;
///
/// Index of first file within folder in File Allocation Table
///
public ushort FirstFileIndex;
///
/// Index of parent folder in current table; for root folder
/// this holds the number of entries in the table
///
public byte ParentFolderIndex;
///
/// Unknown, always 0xF0 except for root folder
///
public byte Unknown;
}
}