mirror of
https://github.com/oqtane/oqtane.framework.git
synced 2025-05-17 18:14:22 +00:00
12 lines
282 B
C#
12 lines
282 B
C#
using System.Collections.Generic;
|
|
using Oqtane.Models;
|
|
|
|
namespace Oqtane.Infrastructure
|
|
{
|
|
public interface ISiteOptions<TOptions>
|
|
where TOptions : class, new()
|
|
{
|
|
void Configure(TOptions options, Alias alias, Dictionary<string, string> sitesettings);
|
|
}
|
|
}
|