14 lines
367 B
C#
14 lines
367 B
C#
namespace IRaCIS.Core.Application.Contracts.RequestAndResponse
|
|
{
|
|
/// <summary>
|
|
/// 分页信息输入
|
|
/// </summary>
|
|
public class PageInput
|
|
{
|
|
public int PageIndex { get; set; } = 1;
|
|
public int PageSize { set; get; } = 10;
|
|
public bool Asc { get; set; } = true;
|
|
public string SortField { get; set; } = "";
|
|
}
|
|
}
|