using HealtRegistry.Models; namespace HealtRegistry.Services; public interface IHealthService { Dictionary ServiceHealthes { get; } ServiceHealthes GetServiceHealthes(); void SetServiceHealth(string serviceName, bool health); }