13 lines
219 B
C#
13 lines
219 B
C#
namespace SysApp.Models
|
|
{
|
|
public interface IPaging
|
|
{
|
|
bool IsFirstQuery { set; get; }
|
|
int PageSize { set; get; }
|
|
|
|
int PageNumber { set; get; }
|
|
|
|
int MaxRow { set; get; }
|
|
}
|
|
}
|