namespace SabreTools.Models.AACS { /// public sealed class DriveRevocationSignatureBlock { /// /// The number of Drive Revocation List Entry fields in the signature block. /// public uint NumberOfEntries { get; set; } /// /// A list of 8-byte Host Drive List Entry fields, the length of this /// list being equal to the number in the signature block. /// #if NET48 public DriveRevocationListEntry[] EntryFields { get; set; } #else public DriveRevocationListEntry?[]? EntryFields { get; set; } #endif } }