12 lines
205 B
C#
12 lines
205 B
C#
using System.Threading.Tasks;
|
|
|
|
namespace Oqtane.Services
|
|
{
|
|
public interface ILocalizationService
|
|
{
|
|
Task<string> GetDefaultCulture();
|
|
|
|
Task<string[]> GetSupportedCultures();
|
|
}
|
|
}
|