BaoKai_202508-Wcs-Jingwang..../WCSIce/Class1.cs

22 lines
410 B
C#
Raw Permalink Normal View History

2025-08-24 12:51:29 +08:00
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; }
}
}