namespace ZB.MOM.WW.Secrets.Abstractions; /// Evicts a cached decrypted secret so the next resolve re-reads it. Called by write paths after a rotate/delete. public interface ISecretCacheInvalidator { /// Evicts the cache entry for (no-op if absent). void Invalidate(SecretName name); }