mirror of
https://github.com/PepperDash/Essentials.git
synced 2026-04-12 12:06:58 +00:00
correct interfaces
This commit is contained in:
parent
08c929699f
commit
cb752850ff
2 changed files with 14 additions and 11 deletions
|
|
@ -1,11 +1,15 @@
|
||||||
using System;
|
using System;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
|
||||||
namespace PepperDash_Essentials_Core.DeviceTypeInterfaces
|
namespace PepperDash_Essentials_Core.DeviceTypeInterfaces
|
||||||
{
|
{
|
||||||
public interface ILanguageDefinition
|
public interface ILanguageDefinition
|
||||||
{
|
{
|
||||||
ILanguageDefinition CurrentLanguage { get; set; }
|
string LocaleName { get; set; }
|
||||||
|
string FriendlyName { get; set; }
|
||||||
event EventHandler CurrentLanguageChanged;
|
bool Enable { get; set; }
|
||||||
|
List<ILanguageLabel> UiLabels { get; set; }
|
||||||
|
List<ILanguageLabel> Sources { get; set; }
|
||||||
|
List<ILanguageLabel> Destinations { get; set; }
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
@ -1,14 +1,13 @@
|
||||||
using System.Collections.Generic;
|
using System;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
|
||||||
namespace PepperDash_Essentials_Core.DeviceTypeInterfaces
|
namespace PepperDash_Essentials_Core.DeviceTypeInterfaces
|
||||||
{
|
{
|
||||||
public interface ILanguageProvider
|
public interface ILanguageProvider
|
||||||
{
|
{
|
||||||
string LocaleName { get; set; }
|
ILanguageDefinition CurrentLanguage { get; set; }
|
||||||
string FriendlyName { get; set; }
|
|
||||||
bool Enable { get; set; }
|
event EventHandler CurrentLanguageChanged;
|
||||||
List<ILanguageLabel> UiLabels { get; set; }
|
|
||||||
List<ILanguageLabel> Sources { get; set; }
|
|
||||||
List<ILanguageLabel> Destinations { get; set; }
|
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
Loading…
Add table
Add a link
Reference in a new issue