7 lines
159 B
C#
7 lines
159 B
C#
namespace _0_Framework.Application;
|
|
|
|
public class PaginationRequest
|
|
{
|
|
public int PageIndex { get; set; } = 1;
|
|
public int PageSize { get; set; } = 30;
|
|
} |