Files
Essentials/src/PepperDash.Essentials.Core/Devices/IReconfigurableDevice.cs

18 lines
392 B
C#

using System;
using PepperDash.Essentials.Core.Config;
namespace PepperDash.Essentials.Core.Devices
{
/// <summary>
/// Defines the contract for IReconfigurableDevice
/// </summary>
public interface IReconfigurableDevice
{
event EventHandler<EventArgs> ConfigChanged;
DeviceConfig Config { get; }
void SetConfig(DeviceConfig config);
}
}