NewGaoKaoApi/PaymentSDK/AliPay/Domain/AlipayOpenAppGongyiTestQuer...

31 lines
712 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>
/// AlipayOpenAppGongyiTestQueryModel Data Structure.
/// </summary>
[Serializable]
public class AlipayOpenAppGongyiTestQueryModel : AopObject
{
/// <summary>
/// sadfsdaf
/// </summary>
[XmlElement("asdf")]
public AdvertItem Asdf { get; set; }
/// <summary>
/// count 不是唯一 取值范围1-10
/// </summary>
[XmlElement("count")]
public long Count { get; set; }
/// <summary>
/// 价格
/// </summary>
[XmlElement("price")]
public string Price { get; set; }
}
}