oqtane.framework/Oqtane.Server/Infrastructure/Interfaces/ILocalizationManager.cs

10 lines
208 B
C#

namespace Oqtane.Infrastructure
{
public interface ILocalizationManager
{
string GetDefaultCulture();
string[] GetSupportedCultures();
string[] GetInstalledCultures();
}
}