erp-platform/api/src/Kurs.Platform.Domain/Data/IPlatformDbSchemaMigrator.cs

9 lines
137 B
C#
Raw Normal View History

2025-05-06 06:45:49 +00:00
using System.Threading.Tasks;
namespace Kurs.Platform.Data;
public interface IPlatformDbSchemaMigrator
{
Task MigrateAsync();
}