18 lines
526 B
C#
18 lines
526 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 RISPagedResult
|
|
{
|
|
public IEnumerable<RISResponse> Data { get; set; } = [];
|
|
public int RecordsTotal { get; set; }
|
|
public IEnumerable<string> DepartmentList { get; set; } = [];
|
|
public IEnumerable<DisciplineDto> DisciplineList { get; set; } = [];
|
|
}
|
|
}
|