using System;

namespace HKCarPlateRecognize_App
{
    public class PlateCatchedEventArgs: EventArgs
    {
        //车牌号
        public string PlateLicense { get; set; }

        //捕获时间
        public DateTime Time { get; set; }

        public PlateCatchedEventArgs(string sLicense, DateTime time)
        {
            PlateLicense = sLicense;
            Time = time;
        }
    }
}