using System;
using System.Xml.Serialization;
namespace Aop.Api.Response
{
///
/// AlipaySiteprobeShopPublicBindResponse.
///
public class AlipaySiteprobeShopPublicBindResponse : AopResponse
{
///
/// 返回码
///
[XmlElement("code")]
public string Code { get; set; }
///
/// 返回码说明
///
[XmlElement("msg")]
public string Msg { get; set; }
///
/// 服务窗Logo连接
///
[XmlElement("public_logo")]
public string PublicLogo { get; set; }
///
/// 服务窗名称
///
[XmlElement("public_name")]
public string PublicName { get; set; }
}
}