10 lines
194 B
C#
10 lines
194 B
C#
using System;
|
|
|
|
namespace Umbraco.Cms.Infrastructure.Migrations
|
|
{
|
|
public interface IMigrationBuilder
|
|
{
|
|
MigrationBase Build(Type migrationType, IMigrationContext context);
|
|
}
|
|
}
|