NewGaoKaoApi/PaymentSDK/AliPay/Domain/CreditPayGuideVO.cs

25 lines
562 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>
/// CreditPayGuideVO Data Structure.
/// </summary>
[Serializable]
public class CreditPayGuideVO : AopObject
{
/// <summary>
/// json字符串表示引导信息
/// </summary>
[XmlElement("guide_param")]
public string GuideParam { get; set; }
/// <summary>
/// 是否需要引导
/// </summary>
[XmlElement("need_guide")]
public bool NeedGuide { get; set; }
}
}