You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

24 lines
642 B
C#

9 months ago
using System;
using System.Xml.Serialization;
namespace Aop.Api.Response
{
/// <summary>
/// AlipayOpenPublicQrcodeCreateResponse.
/// </summary>
public class AlipayOpenPublicQrcodeCreateResponse : AopResponse
{
/// <summary>
/// 二维码图片地址,可跳转到实际图片
/// </summary>
[XmlElement("code_img")]
public string CodeImg { get; set; }
/// <summary>
/// 二维码有效时间,单位(秒)。永久码暂时忽略该信息
/// </summary>
[XmlElement("expire_second")]
public string ExpireSecond { get; set; }
}
}