mirror of
https://github.com/PepperDash/Essentials.git
synced 2026-02-09 01:35:02 +00:00
14 lines
302 B
C#
14 lines
302 B
C#
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);
|
|
}
|
|
} |