mirror of
https://github.com/PepperDash/Essentials.git
synced 2026-01-11 19:44:52 +00:00
Refactors all references to EssentialsRoomBase and EssentialsHuddleSpaceRoom to use the new interfaces instead
19 lines
399 B
C#
19 lines
399 B
C#
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<EventArgs> ConfigChanged;
|
|
|
|
DeviceConfig Config { get; }
|
|
|
|
void SetConfig(DeviceConfig config);
|
|
}
|
|
} |