Files
radzen-blazor/Radzen.Blazor/PagingInformation.cs
Jeffrey van der Stad 3818d0e607 PR: Add PagingSummaryTemplate to RadzenDataGrid (Fixes [#2077](https://github.com/radzenhq/radzen-blazor/issues/2077)) (#2079)
* fix: added PagingSummaryTemplate as replacement for PagingSummaryFormat

* In `DataGridPagerApi.razor`, added a `PagingSummaryTemplate` within the `RadzenDataGrid` component to provide a visual summary of the current page and total records displayed.
2025-04-05 15:51:16 +03:00

11 lines
401 B
C#

namespace Radzen.Blazor
{
/// <summary>
/// Represents paging information.
/// </summary>
/// <param name="CurrentPage">The current page number.</param>
/// <param name="NumberOfPages">The total number of pages.</param>
/// <param name="TotalCount">The total count of items.</param>
public record PagingInformation(int CurrentPage, int NumberOfPages, int TotalCount);
}