NewGaoKaoApi/PaymentSDK/AliPay/Domain/CodeInfo.cs

25 lines
552 B
C#
Raw Permalink Blame History

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.Domain
{
/// <summary>
/// CodeInfo Data Structure.
/// </summary>
[Serializable]
public class CodeInfo : AopObject
{
/// <summary>
/// 跳转URL扫码关注服务窗后会直接跳转到此URL
/// </summary>
[XmlElement("goto_url")]
public string GotoUrl { get; set; }
/// <summary>
/// 场景信息
/// </summary>
[XmlElement("scene")]
public Scene Scene { get; set; }
}
}