mirror of
https://github.com/SabreTools/SabreTools.Models.git
synced 2026-02-17 13:56:04 +00:00
11 lines
323 B
C#
11 lines
323 B
C#
namespace SabreTools.Models.Compression.MSZIP
|
|
{
|
|
/// <summary>
|
|
/// Base class for all data headers (BTYPE=00, BTYPE=01, or BTYPE=02)
|
|
/// </summary>
|
|
/// <see href="https://www.rfc-editor.org/rfc/rfc1951"/>
|
|
public abstract class DataHeader
|
|
{
|
|
// No common fields between all data headers
|
|
}
|
|
} |