12 lines
284 B
C#
12 lines
284 B
C#
namespace Umbraco.Core.Migrations
|
|
{
|
|
/// <summary>
|
|
/// Marker interface for migration expressions
|
|
/// </summary>
|
|
public interface IMigrationExpression
|
|
{
|
|
string Process(IMigrationContext context); // TODO: remove that one?
|
|
void Execute();
|
|
}
|
|
}
|