3 lines
141 B
C#
3 lines
141 B
C#
namespace AMREZ.EOP.Contracts.DTOs.Common;
|
|
|
|
public sealed record PagedResponse<T>(int Page, int PageSize, int Total, IReadOnlyList<T> Items); |