mirror of
https://github.com/SabreTools/SabreTools.Models.git
synced 2026-09-24 15:47:27 +00:00
26 lines
788 B
C#
26 lines
788 B
C#
namespace SabreTools.Models.PKZIP
|
|
{
|
|
/// <summary>
|
|
/// AS/400 Extra Field (0x0065) Attribute [APPENDIX A]
|
|
/// </summary>
|
|
/// <see href="https://pkware.cachefly.net/webdocs/casestudies/APPNOTE.TXT"/>
|
|
public class AS400ExtraFieldAttribute : ExtensibleDataField
|
|
{
|
|
/// <summary>
|
|
/// Field length including length
|
|
/// </summary>
|
|
/// <remarks>Big-endian</remarks>
|
|
public ushort FieldLength { get; set; }
|
|
|
|
/// <summary>
|
|
/// Field code
|
|
/// </summary>
|
|
public AS400ExtraFieldAttributeFieldCode FieldCode { get; set; }
|
|
|
|
/// <summary>
|
|
/// Data
|
|
/// </summary>
|
|
/// <remarks>Variable byte length based on field code</remarks>
|
|
public byte[]? Data { get; set; }
|
|
}
|
|
} |