namespace SabreTools.Data.Models.STFS
{
///
/// STFS Hash Table in a Hash Table Block
///
///
public class HashTable
{
///
/// 170 hash table entries in a single table/block
///
public HashTableEntry[] HashTableEntries { get; set; } = new HashTableEntry[170];
}
}