oqtane.framework/Oqtane.Client/Services/Interfaces/ILocalizationService.cs
2020-12-03 15:50:25 +03:00

12 lines
225 B
C#

using System.Collections.Generic;
using System.Threading.Tasks;
using Oqtane.Models;
namespace Oqtane.Services
{
public interface ILocalizationService
{
Task<IEnumerable<Culture>> GetCulturesAsync();
}
}