ant-design-blazor/components/pagination/PaginationEventArgs.cs
James Yeung a55a324f5c fix: table pagination (#178)
* feat: add pagination and empty

* fix: indent

* fix: table pagination
2020-06-03 00:22:10 +08:00

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; }
}
}