namespace SabreTools.Data.Models.PKZIP
{
///
/// The following is the layout of the OS/400 "extra" block.
///
/// Header ID = 0x0065
///
public class OS400ExtraField : ExtensibleDataField
{
///
/// EBCDIC "Z390" 0xE9F3F9F0
/// or "T4MV" for TargetFour
///
public uint ID { get; set; }
///
/// Attribute data (see APPENDIX A)
///
public byte[] Data { get; set; } = [];
}
}