using System;
using System.Xml.Serialization;
namespace Aop.Api.Domain
{
///
/// ServiceUrl Data Structure.
///
[Serializable]
public class ServiceUrl : AopObject
{
///
/// 类型
///
[XmlElement("type")]
public string Type { get; set; }
///
/// URL
///
[XmlElement("url")]
public string Url { get; set; }
}
}