namespace SabreTools.Data.Models.ZArchive { /// /// Node in the FileTree /// Represents either a file or a directory /// /// public abstract class FileDirectoryEntry { /// /// MSB is the type flag, 0 is Directory, 1 is File /// Remaining 31 bits are the offset in the NameTable /// /// Big-endian public uint NameOffsetAndTypeFlag { get; set; } } }