using System; using System.Xml.Serialization; namespace Aop.Api.Domain { /// /// ServiceContactSimpleVO Data Structure. /// [Serializable] public class ServiceContactSimpleVO : AopObject { /// /// 服务联系人邮箱 /// [XmlElement("contact_email")] public string ContactEmail { get; set; } /// /// 服务联系人名称 /// [XmlElement("contact_name")] public string ContactName { get; set; } /// /// 服务联系人电话 /// [XmlElement("contact_tele")] public string ContactTele { get; set; } } }