refactor: extract common pagination properties into PaginationRequest and apply it in InstitutionContractListSearchModel

This commit is contained in:
MahanCh
2025-08-04 15:45:05 +03:30
parent a4bcb1ac55
commit 05cd8832d5
2 changed files with 8 additions and 10 deletions

View File

@@ -0,0 +1,7 @@
namespace _0_Framework.Application;
public class PaginationRequest
{
public int PageIndex { get; set; } = 1;
public int PageSize { get; set; } = 30;
}