using System;
using System.Xml.Serialization;
using System.Collections.Generic;
namespace Top.Api.Response
{
///
/// TmallDeviceCarturlGetResponse.
///
public class TmallDeviceCarturlGetResponse : TopResponse
{
///
/// 二维码图片URL
///
[XmlElement("short_img_url")]
public string ShortImgUrl { get; set; }
///
/// 二维码短链接地址
///
[XmlElement("short_url")]
public string ShortUrl { get; set; }
}
}