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