using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace CPRNIMS.Infrastructure.Dto.Inventory.Response { public class RISProjectCodeResponse { public string ProjectCode { get; set; }=string.Empty; public string ProjectName { get; set; } = string.Empty; } }