using System;
using System.Xml.Serialization;
namespace Aop.Api.Response
{
///
/// AlipaySiteprobeShopInfoAddResponse.
///
public class AlipaySiteprobeShopInfoAddResponse : AopResponse
{
///
/// 返回码
///
[XmlElement("code")]
public string Code { get; set; }
///
/// 返回值描述
///
[XmlElement("msg")]
public string Msg { get; set; }
///
/// 由支付宝生成的唯一店铺ID,成功时返回
///
[XmlElement("shop_id")]
public string ShopId { get; set; }
}
}