add IKeyed to ILanguageLabel to easily get the key

This commit is contained in:
Andrew Welker 2020-10-13 15:18:31 -06:00
parent cb752850ff
commit 1150d9e497

View file

@ -1,6 +1,8 @@
namespace PepperDash_Essentials_Core.DeviceTypeInterfaces
using PepperDash.Core;
namespace PepperDash_Essentials_Core.DeviceTypeInterfaces
{
public interface ILanguageLabel
public interface ILanguageLabel:IKeyed
{
string Description { get; set; }
string DisplayText { get; set; }