9 lines
242 B
C#
9 lines
242 B
C#
|
|
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;
|
||
|
|
}
|
||
|
|
}
|