12 lines
171 B
C#
12 lines
171 B
C#
using System;
|
|
|
|
namespace PoweredSoft.AdvanceQuery.Abstractions
|
|
{
|
|
|
|
public interface IPageableQuery
|
|
{
|
|
int? GetPage();
|
|
int? GetPageSize();
|
|
}
|
|
}
|