using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace CPRNIMS.Infrastructure.Dto.Items { public class PagedResult { public List Data { get; set; }= new List(); public int TotalCount { get; set; } public int PageNumber { get; set; } public int PageSize { get; set; } public List StatusList { get; set; }= new List(); public List CategoryList { get; set; } = new List(); } }