namespace SabreTools.Data.Models.PKZIP { /// /// This field contains the information about which certificate in /// the PKCS#7 store was used to sign a particular file. It also /// contains the signature data. This field can appear multiple /// times, but can only appear once per certificate. /// /// Header ID = 0x0015 /// public class X509IndividualFile : ExtensibleDataField { /// /// Signature Data /// public byte[] TData { get; set; } = []; } }