Initial move in from old repo

This commit is contained in:
Heath Volmer 2017-02-08 10:44:35 -07:00
commit c87a0ed68e
146 changed files with 16657 additions and 0 deletions

View file

@ -0,0 +1,18 @@
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
{
public class EssentialsRoomBase : Device
{
public EssentialsRoomBase(string key, string name) : base(key, name)
{
}
}
}