using System;
using System.Xml.Serialization;
namespace Aop.Api.Domain
{
///
/// AlipayOpenMiniAmpeBindedminiappBatchqueryModel Data Structure.
///
[Serializable]
public class AlipayOpenMiniAmpeBindedminiappBatchqueryModel : AopObject
{
///
/// 移动应用ID,必填
///
[XmlElement("mobile_app_id")]
public string MobileAppId { get; set; }
///
/// 当前页码
///
[XmlElement("page_num")]
public long PageNum { get; set; }
///
/// 单页查询数量,最大不超过100
///
[XmlElement("page_size")]
public long PageSize { get; set; }
}
}