mirror of
https://github.com/PepperDash/PepperDashCore.git
synced 2026-02-11 10:44:49 +00:00
18 lines
265 B
C#
18 lines
265 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; }
|
|
}
|
|
|
|
public interface IKeyName : IKeyed
|
|
{
|
|
string Name { get; }
|
|
}
|
|
} |