Files
SabreTools.Serialization/SabreTools.Data.Models/STFS/HashTable.cs
Deterous 7485a43364 Secure Transacted File System (STFS) Support (#78)
* Initial STFS support

* Fix build errors

* Fix more build errors

* Final fix

* Cleanup printer

* Fix indent
2026-04-07 22:14:39 -04:00

17 lines
465 B
C#

using System.Collections.Generic;
namespace SabreTools.Data.Models.STFS
{
/// <summary>
/// STFS Hash Table in a Hash Table Block
/// </summary>
/// <see href="https://free60.org/System-Software/Formats/STFS/"/>
public class HashTable
{
/// <summary>
/// 170 hash table entries in a single table/block
/// </summary>
public HashTableEntry[] HashTableEntries { get; set; } = new HashTableEntry[170];
}
}