oqtane.framework/Oqtane.Server/Infrastructure/Interfaces/ISiteTemplate.cs
2020-03-19 12:07:33 -04:00

13 lines
233 B
C#

using Oqtane.Models;
using System.Collections.Generic;
namespace Oqtane.Infrastructure.Interfaces
{
public interface ISiteTemplate
{
string Name { get; }
List<PageTemplate> CreateSite(Site site);
}
}