MES-ETL/MesETL.App/HostedServices/Abstractions/ITransformService.cs

6 lines
159 B
C#
Raw Normal View History

namespace MesETL.App.HostedServices.Abstractions;
2024-01-04 09:00:44 +08:00
public interface ITransformService
{
2024-01-29 09:29:16 +08:00
public Task ExecuteAsync(CancellationToken cancellationToken);
2024-01-04 09:00:44 +08:00
}