using System;
using System.Collections.Generic;
using System.Text;
namespace YouZanSDKStandard.Api.Response
{
public class UploadImageResponse: YouZanResponse
{
public UploadImageResponseDomain data { get; set; }
}
public class UploadImageResponseDomain
{
///
///图片Id
///
public long image_id { get; set; }
///
/// 图宽
///
public int width { get; set; }
///
/// 店铺Id
///
public long kdt_id { get; set; }
///
/// 图片链接
///
public string image_url { get; set; }
///
/// 图高
///
public int height { get; set; }
}
}