using System;
using System.Collections.Generic;
using System.Text;

namespace NoName_CarplateRecognizeCamera_Lab
{
    public class SimplaCarPlateRecognizeResult
    {
        public AlarmInfoPlate AlarmInfoPlate
        { get; set; }
    }

    public class AlarmInfoPlate
    {
        public string channel { get; set; }
        public string deviceName { get; set; }
        public string ipaddr { get; set; }
        public result result { get; set; }

    }

    public class result
    {
        public PlateResult PlateResult { get; set; }
    }

    public class PlateResult
    {
        public string colorType { get; set; }
        public string direction { get; set; }
        public string imagePath { get; set; }
        public string license { get; set; }

    }
}