mirror of
https://github.com/oqtane/oqtane.framework.git
synced 2025-05-19 02:54:22 +00:00
13 lines
233 B
C#
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);
|
|
}
|
|
}
|