oqtane.framework/Oqtane.Server/Infrastructure/Interfaces/ILocalizationManager.cs
2020-09-30 00:07:00 +03:00

10 lines
171 B
C#

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