oqtane.framework/Oqtane.Server/Infrastructure/Interfaces/IMigratable.cs

11 lines
189 B
C#

using Oqtane.Enums;
using Oqtane.Models;
namespace Oqtane.Infrastructure
{
public interface IMigratable
{
bool Migrate(Tenant tenant, MigrationType migrationType);
}
}