10 lines
180 B
C#
10 lines
180 B
C#
using System;
|
|
|
|
namespace Umbraco.Core.Migrations
|
|
{
|
|
public interface IMigrationBuilder
|
|
{
|
|
IMigration Build(Type migrationType, IMigrationContext context);
|
|
}
|
|
}
|