Infrastructure/OpenAuth.App/BaseApp/Base/PageReq.cs

20 lines
411 B
C#
Raw Normal View History

namespace OpenAuth.App.BaseApp.Base
2024-11-13 09:19:06 +08:00
{
public class PageReq
{
/// <summary>
/// 页码
/// </summary>
/// <example>1</example>
public int page { get; set; } = 1;
2024-11-13 09:19:06 +08:00
/// <summary>
/// 每页条数
/// </summary>
/// <example>10</example>
public int limit { get; set; } = 10;
2024-11-13 09:19:06 +08:00
public string key { get; set; }
}
}