10 lines
268 B
C#
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);
|
|
} |