8 lines
175 B
C#
8 lines
175 B
C#
namespace AccountTracking.Api.Models.Dtos;
|
|
public record TransactionListResponse(
|
|
IEnumerable<TransactionDto> Items,
|
|
int TotalCount,
|
|
int Page,
|
|
int PageSize
|
|
);
|