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 MRSPagedResult { public IEnumerable Data { get; set; } = []; public int RecordsTotal { get; set; } public List DepartmentList { get; set; } = new List(); public List DisciplineList { get; set; } = new List(); } }