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>
|
2025-10-31 13:59:28 -04:00
|
|
|
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>
|
2025-10-31 13:59:28 -04:00
|
|
|
public Footer Footer { get; set; } = new();
|
2025-09-26 10:57:15 -04:00
|
|
|
}
|
|
|
|
|
}
|