TextRecognisingResponseModel.cs

12 lines | 258 B Blame History Raw Download
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;

namespace NeuralNetwork.UI.Web.Models.ViewModel
{
    public class TextRecognisingResponseModel : BaseResponseModel
    {
        public int Result { set; get; }
    }
}