namespace HardwarePerformance.Models.DTOs { public class PagedResultDto { public List Items { get; set; } = new(); public int Total { get; set; } public int CurrentPage { get; set; } public int PageSize { get; set; } public int TotalPages { get; set; } } }