first
This commit is contained in:
12
ManagementApp/Models/IPaging.cs
Normal file
12
ManagementApp/Models/IPaging.cs
Normal file
@ -0,0 +1,12 @@
|
||||
namespace ManagementApp.Models
|
||||
{
|
||||
public interface IPaging
|
||||
{
|
||||
bool IsFirstQuery { set; get; }
|
||||
int PageSize { set; get; }
|
||||
|
||||
int PageNumber { set; get; }
|
||||
|
||||
int MaxRow { set; get; }
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user