Skip to content

Instantly share code, notes, and snippets.

@dontpaniclabsgists
Created March 18, 2025 17:08
Show Gist options
  • Save dontpaniclabsgists/da2136b38bd1317d8509466cf4b7c49a to your computer and use it in GitHub Desktop.
Save dontpaniclabsgists/da2136b38bd1317d8509466cf4b7c49a to your computer and use it in GitHub Desktop.
public class Person
{
[XmlElement(ElementName = "First")]
public string FirstName { get; set; }
[XmlElement(ElementName = "Last")]
public string LastName { get; set; }
public int Age { get; set; }
[XmlElement(IsNullable = true)]
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