123456789101112131415161718192021222324252627282930313233343536373839 |
- namespace IDCardRecognitionLibs
- {
- public struct IDCardRecogResult
- {
-
-
- public int NumerStatus { get; set; }
-
- public string Name { get; set; }
-
- public string IdNumber { get; set; }
-
- public string Gender { get; set; }
-
- public string Nation { get; set; }
-
- public string Birthdate { get; set; }
-
- public string Address { get; set; }
- public float TimeSpan { get; set; }
-
- public IDCardRecogResult(int numerStatus, string name, string gender, string nation, string birthdate, string address, string idNumber, float timeSpan)
- {
-
- NumerStatus = numerStatus;
- Name = name;
- Gender = gender;
- Nation = nation;
- Birthdate = birthdate;
- Address = address;
- IdNumber = idNumber;
- TimeSpan = timeSpan;
- }
- }
- }
|