27 lines
516 B
C#
27 lines
516 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace YuanXuan.IM.Common.Request
|
|
{
|
|
|
|
/// <summary>
|
|
/// 分页请求实体类
|
|
/// </summary>
|
|
public class PageRequest
|
|
{
|
|
/// <summary>
|
|
/// 当前页
|
|
/// </summary>
|
|
public int PageIndex { get; set; } = 1;
|
|
|
|
/// <summary>
|
|
/// 一页条数
|
|
/// </summary>
|
|
public int PageSize { get; set; } = 10;
|
|
|
|
}
|
|
}
|