using System.Collections.Generic;
using System.Threading.Tasks;
using Oqtane.Models;
namespace Oqtane.Services
{
///
/// Service to retrieve localizations ()
///
public interface ILocalizationService
{
///
/// Returns a collection of supported cultures
///
///
Task> GetCulturesAsync(bool installed);
}
}