21 lines
547 B
C#
21 lines
547 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 DisciplineDto
|
|
{
|
|
public byte DisciplineId { get; set; }
|
|
public string DisciplineName { get; set; } = string.Empty;
|
|
}
|
|
public class ProjectCodeDto
|
|
{
|
|
public string ProjectCode { get; set; } = string.Empty;
|
|
public string ProjectName { get; set; } = string.Empty;
|
|
public int ProjectCodeId { get; set; }
|
|
}
|
|
}
|