using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace CPRNIMS.Infrastructure.Dto.Common { 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 ClientList { get; set; } = new List(); public List SupplierList { get; set; } = new List(); public List CategoryList { get; set; } = new List(); public List DepartmentList { get; set; } = new List(); } }