namespace SabreTools.Models.WAD { /// public sealed class Lump { public uint Offset { get; set; } public uint DiskLength { get; set; } public uint Length { get; set; } public byte Type { get; set; } public byte Compression { get; set; } public byte Padding0 { get; set; } public byte Padding1 { get; set; } public string? Name { get; set; } } }