Added NightAlert project for travel kit
This commit is contained in:
16
NightScout/Alerters/Alerter.cs
Normal file
16
NightScout/Alerters/Alerter.cs
Normal file
@@ -0,0 +1,16 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace NightScout
|
||||
{
|
||||
public abstract class Alerter : IAlerter
|
||||
{
|
||||
public abstract void StartAlert();
|
||||
public abstract void StartStaleDataAlert();
|
||||
public abstract void StartUrgentAlert();
|
||||
public abstract void StopAlerts();
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user