mirror of
https://github.com/nsnail/NetAdmin.git
synced 2025-12-13 11:35:48 +08:00
wip: 🧠 初步的框架
This commit is contained in:
17
src/backend/NetAdmin.Domain/Dto/Dependency/IPagedInfo.cs
Normal file
17
src/backend/NetAdmin.Domain/Dto/Dependency/IPagedInfo.cs
Normal file
@@ -0,0 +1,17 @@
|
||||
namespace NetAdmin.Domain.Dto.Dependency;
|
||||
|
||||
/// <summary>
|
||||
/// 信息:分页
|
||||
/// </summary>
|
||||
public interface IPagedInfo
|
||||
{
|
||||
/// <summary>
|
||||
/// 当前页码
|
||||
/// </summary>
|
||||
int Page { get; init; }
|
||||
|
||||
/// <summary>
|
||||
/// 页容量
|
||||
/// </summary>
|
||||
int PageSize { get; init; }
|
||||
}
|
||||
Reference in New Issue
Block a user