Add LocalizationService APIs

This commit is contained in:
hishamco
2020-12-02 01:38:32 +03:00
parent 418c9888c4
commit c67e893b6e
2 changed files with 33 additions and 0 deletions

View File

@ -0,0 +1,11 @@
using System.Threading.Tasks;
namespace Oqtane.Services
{
public interface ILocalizationService
{
Task<string> GetDefaultCulture();
Task<string[]> GetSupportedCultures();
}
}