mirror of
https://gitee.com/ant-design-blazor/ant-design-blazor.git
synced 2024-12-15 09:21:24 +08:00
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; }
|
|||
|
}
|
|||
|
}
|