TesteCaminhao/TesteImagemCaminhao/IWheelsDetectionService.cs
2025-03-17 11:13:59 -03:00

8 lines
149 B
C#

namespace TesteImagemCaminhao
{
public interface IWheelsDetectionService
{
Task<int> DetectWheelsCount(string imagePath);
}
}