8 lines
149 B
C#
8 lines
149 B
C#
namespace TesteImagemCaminhao
|
|
{
|
|
public interface IWheelsDetectionService
|
|
{
|
|
Task<int> DetectWheelsCount(string imagePath);
|
|
}
|
|
}
|