27 lines
843 B
C#
27 lines
843 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace CPRNIMS.Infrastructure.Dto.Inventory
|
|
{
|
|
public class RISSearchResultDto
|
|
{
|
|
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 ProjectCodeOptionDto
|
|
{
|
|
public int ProjectCodeId { get; set; }
|
|
public string ProjectCode { get; set; } = string.Empty;
|
|
public string ProjectName { get; set; } = string.Empty;
|
|
}
|
|
}
|