namespace SabreTools.Data.Models.NintendoDisc { /// /// File entry with start and end byte offsets on disc /// public class FileSystemTableEntry { /// /// Offset to the entry name /// /// Big-endian, has high byte set to 0xFF if a directory entry public uint NameOffset { get; set; } /// /// Offset to the start of the file /// /// Big-endian public uint FileOffset { get; set; } /// /// File size /// /// Big-endian public uint FileSize { get; set; } } }