namespace SabreTools.Models.WAD { /// public sealed class Header { #if NET48 public string Signature { get; set; } #else public string? Signature { get; set; } #endif public uint LumpCount { get; set; } public uint LumpOffset { get; set; } } }