using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Xml.Serialization; namespace WCS { [XmlRoot(ElementName = "Person")] public class Class1 { [XmlElement(ElementName = "Name")] public string Name { get; set; } [XmlElement(ElementName = "Age")] public int Age { get; set; } } }