12 lines
306 B
C#
12 lines
306 B
C#
using ExpenseTracker.Application.Common.Models;
|
|
using MediatR;
|
|
|
|
namespace ExpenseTracker.Application.Users.Queries.GetWithPagination;
|
|
|
|
public record GetUsersWithPaginationQuery : IRequest<PaginatedList<UserDto>>
|
|
{
|
|
public int PageNumber { get; set; } = 1;
|
|
|
|
public int PageSize { get; set; } = 10;
|
|
}
|