Files
KonSoft.Clean/modules/payment/src/KonSoft.Payment.Domain/Data/IPaymentDbSchemaMigrator.cs
2025-09-08 14:15:45 +08:00

9 lines
138 B
C#

using System.Threading.Tasks;
namespace KonSoft.Payment.Data;
public interface IPaymentDbSchemaMigrator
{
Task MigrateAsync();
}