namespace ZB.MOM.WW.ScadaBridge.AuditLog.Central;
///
/// Default binding used when the central
/// health surface () has not been wired
/// (test composition roots, site-only hosts). Drops every increment on the floor.
/// Mirrors .
///
public sealed class NoOpAuditPurgeFailureCounter : IAuditPurgeFailureCounter
{
///
public void Increment()
{
// intentional no-op
}
}