refactored IUpgradeable to use the migration attribute approach

This commit is contained in:
Shaun Walker
2022-04-02 09:19:30 -04:00
parent 2ba1a95c8d
commit 268e0e72a3
5 changed files with 87 additions and 79 deletions

View File

@ -0,0 +1,9 @@
using Oqtane.Models;
namespace Oqtane.Infrastructure
{
public interface ISiteUpgrade
{
bool Upgrade(Site site, Alias alias);
}
}