namespace SabreTools.Data.Models.TAR { public sealed class Entry { /// /// Entry header /// public Header Header { get; set; } = new(); /// /// 0 or more blocks representing the content /// public Block[] Blocks { get; set; } = []; } }