From ed56e2543dc91b21c52801edad2f2c0dbdb8f17b Mon Sep 17 00:00:00 2001 From: Matt Nadareski Date: Thu, 28 Aug 2025 12:12:04 -0400 Subject: [PATCH] Convert this to an array --- SabreTools.Models/TAR/Entry.cs | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/SabreTools.Models/TAR/Entry.cs b/SabreTools.Models/TAR/Entry.cs index 4241547..aa7f20c 100644 --- a/SabreTools.Models/TAR/Entry.cs +++ b/SabreTools.Models/TAR/Entry.cs @@ -1,5 +1,3 @@ -using System.Collections.Generic; - namespace SabreTools.Models.TAR { public sealed class Entry @@ -12,6 +10,6 @@ namespace SabreTools.Models.TAR /// /// 0 or more blocks representing the content /// - public List? Blocks { get; set; } + public Block[]? Blocks { get; set; } } } \ No newline at end of file