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);
|
|
}
|
|
}
|