add girIgnore

This commit is contained in:
jrojas
2026-06-23 19:03:17 +02:00
parent 52335cc5fa
commit 95c9039c78
321 changed files with 84 additions and 12748 deletions
+10
View File
@@ -0,0 +1,10 @@
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; }
}