Created
March 18, 2025 17:07
-
-
Save dontpaniclabsgists/3f27221b906e216e64cf6f493ef72483 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public class Person | |
{ | |
[XmlElement(ElementName = "First")] | |
public string FirstName { get; set; } | |
[XmlElement(ElementName = "Last")] | |
public string LastName { get; set; } | |
public int Age { get; set; } | |
public string Email { get; set; } | |
public PhoneNumber[] PhoneNumbers { get; set; } | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment