mirror of
https://gitee.com/dotnetchina/OpenAuth.Net.git
synced 2025-05-16 13:09:35 +08:00
17 lines
301 B
C#
17 lines
301 B
C#
![]() |
namespace OpenAuth.App.Request
|
|||
|
{
|
|||
|
public class PageReq
|
|||
|
{
|
|||
|
public int page { get; set; }
|
|||
|
public int limit { get; set; }
|
|||
|
|
|||
|
public string key { get; set; }
|
|||
|
|
|||
|
public PageReq()
|
|||
|
{
|
|||
|
page = 1;
|
|||
|
limit = 10;
|
|||
|
}
|
|||
|
}
|
|||
|
}
|