31 lines
1017 B
C#
31 lines
1017 B
C#
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<T>
|
|
{
|
|
public bool Success { get; set; }
|
|
public List<T> data { get; set; } = new List<T>();
|
|
}
|
|
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;
|
|
}
|
|
}
|