using System; using System.Xml.Serialization; namespace Aop.Api.Domain { /// /// MyObjectDdd Data Structure. /// [Serializable] public class MyObjectDdd : AopObject { /// /// xx /// [XmlElement("item")] public string Item { get; set; } /// /// xxx /// [XmlElement("param")] public string Param { get; set; } } }