using System.Collections.Generic; namespace StellaOps.Provcache; /// /// Information about signers and attestors. /// public sealed record SignerInfo { /// /// Hash of the sorted signer set. /// public required string SetHash { get; init; } /// /// Number of signers in the set. /// public int SignerCount { get; init; } /// /// Signer certificate information. /// public IReadOnlyList Certificates { get; init; } = []; }