mirror of
https://github.com/nsnail/NetAdmin.git
synced 2025-06-19 18:28:17 +08:00
17 lines
309 B
C#
17 lines
309 B
C#
namespace NetAdmin.Domain.Dto.Dependency;
|
|
|
|
/// <summary>
|
|
/// 信息:分页
|
|
/// </summary>
|
|
public interface IPagedInfo
|
|
{
|
|
/// <summary>
|
|
/// 当前页码
|
|
/// </summary>
|
|
int Page { get; init; }
|
|
|
|
/// <summary>
|
|
/// 页容量
|
|
/// </summary>
|
|
int PageSize { get; init; }
|
|
} |