using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace CPRNIMS.Infrastructure.Dto.Inventory.Response { public class RISPagedResponse { public List Data { get; set; } = []; public int RecordsTotal { get; set; } public List DepartmentList { get; set; } = []; public List DisciplineList { get; set; } = []; } public class RISListItem { public long RISId { get; set; } public string RISNo { get; set; } = string.Empty; public int InventoryId { get; set; } public string? ItemName { get; set; } public long ItemNo { get; set; } public string? ProjectCode { get; set; } public string? ProjectName { get; set; } public string? DisciplineName { get; set; } public decimal QtyIssued { get; set; } public decimal TotalReturned { get; set; } public string? Remarks { get; set; } public short Status { get; set; } public string? StatusLabel { get; set; } public string? CreatedBy { get; set; } public DateTime CreatedDate { get; set; } public string? ApprovedBy { get; set; } public DateTime? ApprovedDate { get; set; } public decimal MRSCount { get; set; } } public class DisciplineItem { public byte DisciplineId { get; set; } public string DisciplineName { get; set; } = string.Empty; } }