TextRecognisingService.cs

17 lines | 314 B Blame History Raw Download
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace NeuralNetwork.Model.Services
{
    public class TextRecognisingTestService : ITextRecognisingService
    {
        public int Work()
        {
            return -1;
        }
    }
}