Files
healthr/HealtRegistry/Services/IHealthService.cs
2024-01-23 17:50:29 +01:00

10 lines
268 B
C#

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