mirror of
https://gitee.com/ant-design-blazor/ant-design-blazor.git
synced 2024-12-04 21:17:36 +08:00
a55a324f5c
* feat: add pagination and empty * fix: indent * fix: table pagination
18 lines
314 B
C#
18 lines
314 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace AntDesign
|
|
{
|
|
public class PaginationEventArgs
|
|
{
|
|
public int PageIndex { get; set; }
|
|
|
|
public int PageSize { get; set; }
|
|
|
|
public int PageCount { get; set; }
|
|
|
|
public int Total { get; set; }
|
|
}
|
|
}
|