mirror of
https://gitee.com/dotnetchina/OpenAuth.Net.git
synced 2026-04-20 05:11:11 +08:00
增加撤销与启动,详见:#I3ILBG
调整工程结构,采用模块化机制
This commit is contained in:
16
OpenAuth.App/Base/PageReq.cs
Normal file
16
OpenAuth.App/Base/PageReq.cs
Normal file
@@ -0,0 +1,16 @@
|
||||
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;
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user