10 lines
282 B
C#
Executable File
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; }
|
|
} |