[csharp] 123

Viewer

  1. public class Contact
  2. {
  3.         public string BirthDate { get; set; }
  4.         public int CountryCode { get; set; }
  5.         public string EmailAddress { get; set; }
  6.         public string FirstName { get; set; }
  7.         public string LastName { get; set; }
  8.         public string MF { get; set; }
  9.         public string MiddleName { get; set; }
  10.         public string MobilePhone { get; set; }
  11.         public string TerrorFlag { get; set; }
  12.         public string PassportIssueDate { get; set; }
  13.         public string PassportNumber { get; set; }
  14.         public string PassportSeries { get; set; }
  15.         public string PassportWhere { get; set; }
  16.         public string RENEmergencyPhone { get; set; }
  17.         public string Role { get; set; }
  18.         public string RowId { get; set; }
  19. }
  20.  
  21. public class AddressItem
  22. {
  23.         public string ApartmentExt { get; set; }
  24.         public string ApartmentNumber { get; set; }
  25.         public string City { get; set; }
  26.         public string FlatNumber { get; set; }
  27.         public string PostalCode { get; set; }
  28.         public string RegionName { get; set; }
  29.         public string StreetAddress { get; set; }
  30.         public string Type { get; set; }
  31. }
  32.  
  33. public class ContactVectorType
  34. {
  35.         public Contact Contact { get; set; }
  36.         public List <AddressItem> Address { get; set; }
  37. }
  38.  
  39. public class Body
  40. {
  41.         public ContactVectorType ContactVectorType { get; set; }
  42. }
  43.  
  44. public class Root
  45. {
  46.         public Body body { get; set; }
  47. }
  48.  

Editor

You can edit this paste and save as new:


File Description
  • 123
  • Paste Code
  • 11 Dec-2023
  • 1.48 Kb
You can Share it: