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

10 lines
137 B
C#
Raw Normal View History

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