using System; using System.Xml.Serialization; namespace Aop.Api.Domain { /// /// MorphoSource Data Structure. /// [Serializable] public class MorphoSource : AopObject { /// /// 基于源码的发布流程的源码信息 /// [XmlElement("address")] public string Address { get; set; } /// /// 调用方侧对应应用唯一标识 /// [XmlElement("id")] public string Id { get; set; } } }