mirror of
https://gitee.com/dotnetchina/OpenAuth.Net.git
synced 2025-04-05 17:38:01 +08:00
17 lines
285 B
C#
17 lines
285 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;
|
|
}
|
|
}
|
|
}
|