mirror of
https://dev.azure.com/tstanciu94/NetworkResurrector/_git/NetworkResurrector
synced 2025-06-21 19:17:04 +03:00
9 lines
185 B
C#
9 lines
185 B
C#
namespace NetworkResurrector.Server.Abstractions
|
|
{
|
|
public interface INotifier
|
|
{
|
|
void NotifyMessage(string message);
|
|
void NotifyError(string message);
|
|
}
|
|
}
|