MES-ETL/ConsoleApp2/HostedServices/Abstractions/ITransformService.cs

6 lines
160 B
C#
Raw Normal View History

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