Files
AuditLogs/audit-logs/Models/DTO/PaginatedLogsResultDto.cs
T
2026-06-23 19:03:17 +02:00

10 lines
282 B
C#
Executable File

namespace audit_logs.Models;
public class PaginatedLogsResultDto<T>
{
public int CurrentPage { get; set; }
public int PageSize { get; set; }
public long TotalRecords { get; set; }
public int TotalPages { get; set; }
public IEnumerable<T> Records { get; set; }
}