using Oqtane.Models;
using System.Collections.Generic;
using System.Threading.Tasks;
namespace Oqtane.Services
{
///
/// Service to retrieve entries
///
public interface ISiteTemplateService
{
///
/// Returns a list of site templates
///
///
Task> GetSiteTemplatesAsync();
}
}