Files

8 lines
140 B
C#

using System.Threading.Tasks;
namespace KonSoft.Shared.DbMigrator.Data;
public interface IDbSchemaMigrator
{
Task MigrateAsync();
}