oqtane.framework/Oqtane.Client/Services/Interfaces/ISiteTemplateService.cs
2020-04-04 14:06:24 -04:00

12 lines
231 B
C#

using Oqtane.Models;
using System.Collections.Generic;
using System.Threading.Tasks;
namespace Oqtane.Services
{
public interface ISiteTemplateService
{
Task<List<SiteTemplate>> GetSiteTemplatesAsync();
}
}