9 lines
138 B
C#
9 lines
138 B
C#
using System.Threading.Tasks;
|
|
|
|
namespace KonSoft.Payment.Data;
|
|
|
|
public interface IPaymentDbSchemaMigrator
|
|
{
|
|
Task MigrateAsync();
|
|
}
|