Files

8 lines
189 B
C#
Raw Permalink Normal View History

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