10 lines
198 B
C#
10 lines
198 B
C#
namespace NightScout
|
|
{
|
|
public interface IAlerter
|
|
{
|
|
void StartAlert();
|
|
void StartUrgentAlert();
|
|
void StartStaleDataAlert();
|
|
void StopAlerts();
|
|
}
|
|
} |