namespace Nuuru.Server.DTOs { public class PagedResult { public IEnumerable Items { get; set; } = []; public int TotalCount { get; set; } public int Page { get; set; } public int PageSize { get; set; } public int TotalPages => (int)Math.Ceiling(TotalCount / (double)PageSize); } }