12345678910111213141516171819 |
- 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;
- }
- }
- }
|