namespace SabreTools.Models.Nitro
{
///
/// The name table stores the names of the files and the structure
/// of the file system. From the information stored, the index of the
/// file's entry in the File Allocation Table can be found.
///
/// It is split into two parts:
/// - Folder Allocation Table
/// - Name List
///
///
public sealed class NameTable
{
///
/// Folder allocation table
///
public FolderAllocationTableEntry?[]? FolderAllocationTable { get; set; }
///
/// Name list
///
public NameListEntry?[]? NameList { get; set; }
}
}