11 lines
189 B
C#
11 lines
189 B
C#
using Oqtane.Enums;
|
|
using Oqtane.Models;
|
|
|
|
namespace Oqtane.Infrastructure
|
|
{
|
|
public interface IMigratable
|
|
{
|
|
bool Migrate(Tenant tenant, MigrationType migrationType);
|
|
}
|
|
}
|