18 lines
537 B
C#
18 lines
537 B
C#
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<MRSResponse> Data { get; set; } = [];
|
|
public int RecordsTotal { get; set; }
|
|
public List<string> DepartmentList { get; set; } = new List<string>();
|
|
public List<string> DisciplineList { get; set; } = new List<string>();
|
|
}
|
|
}
|