feat (essentials): wip to move interfaces to their own folder/namespace

This commit is contained in:
Nick Genovese
2022-03-21 10:53:11 -04:00
parent 2f179ea190
commit 65d54f89ea
118 changed files with 526 additions and 464 deletions

View File

@@ -0,0 +1,14 @@
using System;
using PepperDash.Essentials.Core.Config;
namespace PepperDash.Essentials.Core.Interfaces
{
public interface IReconfigurableDevice
{
event EventHandler<EventArgs> ConfigChanged;
DeviceConfig Config { get; }
void SetConfig(DeviceConfig config);
}
}