Files

19 lines
465 B
C#
Raw Permalink Normal View History

2025-09-26 13:06:18 -04:00
namespace SabreTools.Data.Models.BZip2
2025-09-26 10:57:15 -04:00
{
2025-09-30 20:25:18 -04:00
/// <see href="https://github.com/dsnet/compress/blob/master/doc/bzip2-format.pdf"/>
2025-09-26 10:57:15 -04:00
public class Archive
{
2025-09-30 20:25:18 -04:00
/// <summary>
/// Stream header
/// </summary>
public Header Header { get; set; } = new();
2025-09-26 10:57:15 -04:00
2025-09-30 20:25:18 -04:00
// TODO: Implement remaining structures
/// <summary>
/// Stream footer
/// </summary>
public Footer Footer { get; set; } = new();
2025-09-26 10:57:15 -04:00
}
}