This is an array

This commit is contained in:
Matt Nadareski
2023-09-22 15:34:55 -04:00
parent 7d34f486cd
commit cc62b3ffae

View File

@@ -33,9 +33,9 @@ namespace SabreTools.Models.Compression.MSZIP
/// Compressed blocks
/// </summary>
#if NET48
public DeflateBlock CompressedBlocks { get; set; }
public DeflateBlock[] CompressedBlocks { get; set; }
#else
public DeflateBlock? CompressedBlocks { get; set; }
public DeflateBlock[]? CompressedBlocks { get; set; }
#endif
}
}