mirror of
https://gitee.com/dotnetchina/OpenAuth.Net.git
synced 2025-04-05 17:38:01 +08:00
25 lines
486 B
C#
25 lines
486 B
C#
namespace OpenAuth.App.Request
|
|
{
|
|
public class PageReq
|
|
{
|
|
/// <summary>
|
|
/// 页码
|
|
/// </summary>
|
|
/// <example>1</example>
|
|
public int page { get; set; }
|
|
/// <summary>
|
|
/// 每页条数
|
|
/// </summary>
|
|
/// <example>10</example>
|
|
public int limit { get; set; }
|
|
|
|
public string key { get; set; }
|
|
|
|
public PageReq()
|
|
{
|
|
page = 1;
|
|
limit = 10;
|
|
}
|
|
}
|
|
}
|