Essentials/PepperDashEssentials/PepperDashEssentials/Room/EssentialsRoomBase.cs
2017-02-21 09:14:03 -07:00

30 lines
No EOL
584 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using Crestron.SimplSharp;
using PepperDash.Core;
using PepperDash.Essentials.Core;
namespace PepperDash.Essentials
{
/// <summary>
///
/// </summary>
public interface IHasCurrentSourceInfoChange
{
event SourceInfoChangeHandler CurrentSingleSourceChange;
}
/// <summary>
///
/// </summary>
public class EssentialsRoomBase : Device
{
public EssentialsRoomBase(string key, string name) : base(key, name)
{
}
}
}