diff --git a/Compression/LZX/Chunk.cs b/Compression/LZX/Chunk.cs
index 4128933..bc8e517 100644
--- a/Compression/LZX/Chunk.cs
+++ b/Compression/LZX/Chunk.cs
@@ -15,11 +15,19 @@ namespace SabreTools.Models.Compression.LZX
///
/// Chunk header
///
+#if NET48
public ChunkHeader Header { get; set; }
+#else
+ public ChunkHeader? Header { get; set; }
+#endif
///
/// Block headers and data
///
+#if NET48
public Block[] Blocks { get; set; }
+#else
+ public Block[]? Blocks { get; set; }
+#endif
}
}
\ No newline at end of file