using System; using System.Collections.Generic; using System.Linq; using System.Text; using Crestron.SimplSharp; using PepperDash.Essentials.Core.Config; namespace PepperDash.Essentials.Core.Devices { public interface IReconfigurableDevice { event EventHandler ConfigChanged; DeviceConfig Config { get; } void SetConfig(DeviceConfig config); } }