mirror of
https://github.com/PepperDash/Essentials.git
synced 2026-02-15 20:54:55 +00:00
add full implementation for LanguageLabel
This commit is contained in:
@@ -8,8 +8,8 @@ namespace PepperDash_Essentials_Core.DeviceTypeInterfaces
|
|||||||
string LocaleName { get; set; }
|
string LocaleName { get; set; }
|
||||||
string FriendlyName { get; set; }
|
string FriendlyName { get; set; }
|
||||||
bool Enable { get; set; }
|
bool Enable { get; set; }
|
||||||
List<ILanguageLabel> UiLabels { get; set; }
|
List<LanguageLabel> UiLabels { get; set; }
|
||||||
List<ILanguageLabel> Sources { get; set; }
|
List<LanguageLabel> Sources { get; set; }
|
||||||
List<ILanguageLabel> Destinations { get; set; }
|
List<LanguageLabel> Destinations { get; set; }
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -1,10 +0,0 @@
|
|||||||
using PepperDash.Core;
|
|
||||||
|
|
||||||
namespace PepperDash_Essentials_Core.DeviceTypeInterfaces
|
|
||||||
{
|
|
||||||
public interface ILanguageLabel:IKeyed
|
|
||||||
{
|
|
||||||
string Description { get; set; }
|
|
||||||
string DisplayText { get; set; }
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -0,0 +1,12 @@
|
|||||||
|
using PepperDash.Core;
|
||||||
|
|
||||||
|
namespace PepperDash_Essentials_Core.DeviceTypeInterfaces
|
||||||
|
{
|
||||||
|
public class LanguageLabel
|
||||||
|
{
|
||||||
|
public string Key { get; set; }
|
||||||
|
public string Description { get; set; }
|
||||||
|
public string DisplayText { get; set; }
|
||||||
|
public uint JoinNumber { get; set; }
|
||||||
|
}
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user