Files
GestionIntegralWeb/Backend/GestionIntegral.Api/Models/Dtos/Distribucion/CanillaDropdownDto.cs

9 lines
242 B
C#
Raw Normal View History

namespace GestionIntegral.Api.Dtos.Distribucion
{
public class CanillaDropdownDto
{
public int IdCanilla { get; set; }
public int? Legajo { get; set; }
public string NomApe { get; set; } = string.Empty;
}
}