using ScadaLink.Commons.Messages.Health; namespace ScadaLink.HealthMonitoring; /// /// Abstraction for sending health reports to central. /// In production, implemented via Akka remoting (Tell, fire-and-forget). /// public interface IHealthReportTransport { void Send(SiteHealthReport report); }