NonInventPurchasingSystem/CPRNIMS.Infrastructure/Dto/Items/PagedResult.cs

19 lines
550 B
C#

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