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

8 lines
205 B
C#
Raw Normal View History

namespace GestionIntegral.Api.Dtos.Distribucion
{
public class OtroDestinoDropdownDto
{
public int IdDestino { get; set; }
public string Nombre { get; set; } = string.Empty;
}
}