NewGaoKaoApi/PaymentSDK/AliPay/Domain/AlipayOpenAppAppcontentItem...

25 lines
603 B
C#
Raw 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>
/// AlipayOpenAppAppcontentItemQueryModel Data Structure.
/// </summary>
[Serializable]
public class AlipayOpenAppAppcontentItemQueryModel : AopObject
{
/// <summary>
/// 当前页码大于0
/// </summary>
[XmlElement("page_num")]
public long PageNum { get; set; }
/// <summary>
/// 每页查询数量可选值1到20
/// </summary>
[XmlElement("page_size")]
public long PageSize { get; set; }
}
}