namespace SabreTools.Models.XZP { /// public sealed class Header { #if NET48 public string Signature { get; set; } #else public string? Signature { get; set; } #endif public uint Version { get; set; } public uint PreloadDirectoryEntryCount { get; set; } public uint DirectoryEntryCount { get; set; } public uint PreloadBytes { get; set; } public uint HeaderLength { get; set; } public uint DirectoryItemCount { get; set; } public uint DirectoryItemOffset { get; set; } public uint DirectoryItemLength { get; set; } } }