Files
GestionIntegralWeb/Backend/GestionIntegral.Api/Models/Dtos/Impresion/PlantaDropdownDto.cs

8 lines
189 B
C#
Raw Normal View History

namespace GestionIntegral.Api.Dtos.Impresion
{
public class PlantaDropdownDto
{
public int IdPlanta { get; set; }
public required string Nombre { get; set; }
}
}