9 lines
178 B
C#
9 lines
178 B
C#
|
namespace NetworkResurrector.Abstractions
|
|||
|
{
|
|||
|
public interface INotifier
|
|||
|
{
|
|||
|
void NotifyMessage(string message);
|
|||
|
void NotifyError(string message);
|
|||
|
}
|
|||
|
}
|