monithor/Monithor.api/Alerting/ITarget.cs

6 lines
149 B
C#
Raw Normal View History

2021-05-18 17:13:21 +02:00
namespace Monithor.api.Alerting {
public interface ITarget {
public void SendMessage();
public IMonitor Monitor { get; set; }
}
}