namespace SabreTools.Data.Models.ZArchive
{
///
/// UTF-8 strings, prepended by string lengths
///
///
public class NameTable
{
///
/// List of filename entries
///
public NameEntry[] NameEntries { get; set; } = [];
///
/// Virtual field, to cache the offsets of each name entry in the name table
/// Used for referencing the name entry from an offset into the name table
///
public uint[] NameTableOffsets { get; set; } = [];
}
}