feat: разделение на repository - services

This commit is contained in:
Mikhail Trubnikov
2026-04-14 09:56:31 +10:00
parent da83aff19c
commit 734c2e3c99
71 changed files with 333 additions and 605 deletions

View File

@@ -0,0 +1,11 @@
namespace PARR.Domain.Common.Pagination
{
/// <summary>
/// Параметры пагинации
/// </summary>
public record PaginationFilter
{
public int PageNumber { get; init; }
public int PageSize { get; init; }
}
}