using CPRNIMS.Infrastructure.Dto.Inventory.Response; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace CPRNIMS.Infrastructure.Dto.Inventory { public class RISPagedResult { public IEnumerable Data { get; set; } = []; public int RecordsTotal { get; set; } public IEnumerable DepartmentList { get; set; } = []; public IEnumerable DisciplineList { get; set; } = []; } }