namespace ZA.CoreService.ESBCertificateManager.Services; public interface ISecretProvider { StoredCredential GetCredential(string credentialReference); } public sealed record StoredCredential( string UserName, string Secret);