mirror of
https://github.com/PepperDash/Essentials.git
synced 2026-02-14 12:15:01 +00:00
correct interfaces
This commit is contained in:
@@ -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; }
|
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
Reference in New Issue
Block a user