using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace CPRNIMS.Infrastructure.Dto.Inventory.Response { public class SearchApiResponse { public bool Success { get; set; } public List data { get; set; } = new List(); } public class SearchRISProjectCodeResponse { public long RISId { get; set; } public string RISNo { get; set; } = string.Empty; public int ProjectCodeId { get; set; } public string ProjectCode { get; set; } = string.Empty; public string ProjectName { get; set; } = string.Empty; public string DisciplineName { get; set; } = string.Empty; public decimal QtyAvailableToReturn { get; set; } } public class ProjectCodeOptionResponse { public int ProjectCodeId { get; set; } public string ProjectCode { get; set; } = string.Empty; public string ProjectName { get; set; } = string.Empty; } }