namespace SabreTools.Models.AACS
{
///
public sealed class DriveRevocationSignatureBlock
{
///
/// The number of Drive Revocation List Entry fields in the signature block.
///
public uint NumberOfEntries;
///
/// 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;
#else
public DriveRevocationListEntry[]? EntryFields;
#endif
}
}