12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- namespace Models
- {
- public class VisaCustomerFamily
- {
-
-
-
- public int Id { get; set; }
-
-
-
- public int DCId { get; set; }
-
-
-
- public string Appellation { get; set; }
-
-
-
- public string Name { get; set; }
-
-
-
- public string BirthDay { get; set; }
-
-
-
- public string BirthPlace { get; set; }
-
-
-
- public string Politics { get; set; }
-
-
-
- public string Client { get; set; }
-
-
-
- public string Address { get; set; }
-
-
-
- public int IsEu { get; set; }
-
-
-
- public string NameSnd { get; set; }
-
-
-
- public string BirthDaySnd { get; set; }
-
-
-
- public string Nationality { get; set; }
-
-
-
- public string IDCard { get; set; }
-
-
-
- public string Reletionship { get; set; }
-
-
-
- public string IsUSA { get; set; }
- }
- }
|