Files
GestionIntegralWeb/Backend/GestionIntegral.Api/Models/Dtos/Distribucion/PublicacionDropdownDto.cs
dmolinari c96d259892
All checks were successful
Optimized Build and Deploy / remote-build-and-deploy (push) Successful in 5m17s
Implementación AnomalIA - Fix de dropdowns y permisos.
2025-06-30 15:26:14 -03:00

10 lines
320 B
C#

namespace GestionIntegral.Api.Dtos.Distribucion
{
public class PublicacionDropdownDto
{
public int IdPublicacion { get; set; }
public string Nombre { get; set; } = string.Empty;
public string NombreEmpresa { get; set; } = string.Empty;
public bool Habilitada { get; set; }
}
}