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