oqtane.framework/Oqtane.Server/Infrastructure/Options/ISiteOptions.cs

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