namespace SabreTools.Data.Models.GZIP
{
///
public sealed class ExtraFieldData
{
///
/// SI1 and SI2 provide a subfield ID, typically two ASCII letters
/// with some mnemonic value.
///
public byte SubfieldID1 { get; set; }
///
/// SI1 and SI2 provide a subfield ID, typically two ASCII letters
/// with some mnemonic value.
///
public byte SubfieldID2 { get; set; }
///
/// LEN gives the length of the subfield data, excluding the 4
/// initial bytes.
///
public ushort Length { get; set; }
public byte[] Data { get; set; } = [];
}
}