namespace SabreTools.Models.PKZIP { /// /// z/OS Extra Field (0x0065) Attribute [APPENDIX B] /// /// public class ZOSExtraFieldAttribute : ExtensibleDataField { /// /// Field length including length /// /// Big-endian public ushort FieldLength { get; set; } /// /// Field code /// public ZOSExtraFieldAttributeFieldCode FieldCode { get; set; } /// /// Data /// /// Variable byte length based on field code public byte[]? Data { get; set; } } }