Files

16 lines
355 B
C#
Raw Permalink Normal View History

2025-09-26 13:06:18 -04:00
namespace SabreTools.Data.Models.TAR
2025-09-26 10:57:15 -04:00
{
public sealed class Entry
{
/// <summary>
/// Entry header
/// </summary>
public Header Header { get; set; } = new();
2025-09-26 10:57:15 -04:00
/// <summary>
/// 0 or more blocks representing the content
/// </summary>
public Block[] Blocks { get; set; } = [];
2025-09-26 10:57:15 -04:00
}
2025-10-30 23:45:14 -04:00
}