add support for named site options

This commit is contained in:
sbwalker
2023-09-21 16:53:52 -04:00
parent c6a8f5305a
commit 65782e87c1
5 changed files with 60 additions and 9 deletions

View File

@ -0,0 +1,11 @@
using System.Collections.Generic;
using Oqtane.Models;
namespace Oqtane.Infrastructure
{
public interface ISiteNamedOptions<TOptions>
where TOptions : class, new()
{
void Configure(string name, TOptions options, Alias alias, Dictionary<string, string> sitesettings);
}
}