remove SiteSettings from Alias for better separation of concerns

This commit is contained in:
Shaun Walker
2022-03-27 19:47:52 -04:00
parent b92a888583
commit f9432acf1b
13 changed files with 78 additions and 84 deletions

View File

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