using System;
using System.Xml.Serialization;
namespace Aop.Api.Domain
{
///
/// BaseInfoConfig Data Structure.
///
[Serializable]
public class BaseInfoConfig : AopObject
{
///
/// 商户联系人邮箱,需为合法的邮箱。
///
[XmlElement("contact_email")]
public string ContactEmail { get; set; }
///
/// 商户联系人电话,需为合法的电话号码。
///
[XmlElement("contact_phone")]
public string ContactPhone { get; set; }
///
/// 信用服务logo地址,为必传字段,需为合法的链接。
///
[XmlElement("logo")]
public string Logo { get; set; }
///
/// 信用服务名称,为必传字段。
///
[XmlElement("service_name")]
public string ServiceName { get; set; }
}
}