Files
PepperDashCore/Pepperdash Core/Pepperdash Core/CoreInterfaces.cs
2016-06-15 10:05:41 -06:00

13 lines
199 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using Crestron.SimplSharp;
namespace PepperDash.Core
{
public interface IKeyed
{
string Key { get; }
}
}