[csharp] 123
Viewer
- public class Contact
- {
- public string BirthDate { get; set; }
- public int CountryCode { get; set; }
- public string EmailAddress { get; set; }
- public string FirstName { get; set; }
- public string LastName { get; set; }
- public string MF { get; set; }
- public string MiddleName { get; set; }
- public string MobilePhone { get; set; }
- public string TerrorFlag { get; set; }
- public string PassportIssueDate { get; set; }
- public string PassportNumber { get; set; }
- public string PassportSeries { get; set; }
- public string PassportWhere { get; set; }
- public string RENEmergencyPhone { get; set; }
- public string Role { get; set; }
- public string RowId { get; set; }
- }
- public class AddressItem
- {
- public string ApartmentExt { get; set; }
- public string ApartmentNumber { get; set; }
- public string City { get; set; }
- public string FlatNumber { get; set; }
- public string PostalCode { get; set; }
- public string RegionName { get; set; }
- public string StreetAddress { get; set; }
- public string Type { get; set; }
- }
- public class ContactVectorType
- {
- public Contact Contact { get; set; }
- public List <AddressItem> Address { get; set; }
- }
- public class Body
- {
- public ContactVectorType ContactVectorType { get; set; }
- }
- public class Root
- {
- public Body body { get; set; }
- }
Editor
You can edit this paste and save as new: