11 lines
259 B
C#
Raw Normal View History

2025-04-06 02:43:01 -03:00
namespace phronCare.UIBlazor.Data
{
public class PagedResult<T>
{
public IEnumerable<T> Items { get; set; }
public int TotalItems { get; set; }
public int Page { get; set; }
public int PageSize { get; set; }
}
}