10 lines
259 B
C#
10 lines
259 B
C#
|
using Microsoft.Extensions.Hosting;
|
||
|
|
||
|
namespace ControlServer;
|
||
|
|
||
|
public interface IControlServer : IHostedService
|
||
|
{
|
||
|
public void OnEvent(Func<SensorEvent, Task> onEventRecived);
|
||
|
public void AuthorizeEvent(long eventId);
|
||
|
public void RequestDisarm();
|
||
|
}
|