using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Api.Framework.EntityTmp.SuNing2
{
///
/// 获取到的转链后的结构
///
public class SN_QueryCommoditydetail
{
public Sn_responseContent sn_responseContent { get; set; }
}
public class Sn_responseContent
{
///
///
///
public Sn_error sn_error { get; set; }
public Sn_body sn_body { get; set; }
}
public class Sn_error
{
///
/// pid与推广位id冲突,不能同时存在
///
public string error_msg { get; set; }
///
///
///
public string error_code { get; set; }
}
public class GetExtensionlink
{
///
///
///
public string shortLink { get; set; }
}
public class Sn_body
{
///
/// 转链后的链接
///
public GetExtensionlink getExtensionlink { get; set; }
}
}