mirror of
https://github.com/oqtane/oqtane.framework.git
synced 2025-05-17 18:14:22 +00:00
11 lines
223 B
C#
11 lines
223 B
C#
using Oqtane.Models;
|
|
|
|
namespace Oqtane.Infrastructure
|
|
{
|
|
public interface ISiteMigration
|
|
{
|
|
void Up(Site site, Alias alias);
|
|
void Down(Site site, Alias alias); // for future use (if necessary)
|
|
}
|
|
}
|