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.

36 lines
882 B
C#

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

using System;
using System.Xml.Serialization;
namespace Aop.Api.Response
{
/// <summary>
/// AlipayMobilePublicQrcodeCreateResponse.
/// </summary>
public class AlipayMobilePublicQrcodeCreateResponse : AopResponse
{
/// <summary>
/// 返回结果码如200标识成功
/// </summary>
[XmlElement("code")]
public string Code { get; set; }
/// <summary>
/// 图片地址
/// </summary>
[XmlElement("code_img")]
public string CodeImg { get; set; }
/// <summary>
/// 码过期时间,单位:秒
/// </summary>
[XmlElement("expire_second")]
public long ExpireSecond { get; set; }
/// <summary>
/// 结果吗描述信息
/// </summary>
[XmlElement("msg")]
public string Msg { get; set; }
}
}