2025-06-03 18:42:56 -03:00
|
|
|
namespace GestionIntegral.Api.Dtos.Distribucion
|
|
|
|
|
{
|
|
|
|
|
public class PublicacionDropdownDto
|
|
|
|
|
{
|
|
|
|
|
public int IdPublicacion { get; set; }
|
|
|
|
|
public string Nombre { get; set; } = string.Empty;
|
2025-06-30 15:26:14 -03:00
|
|
|
public string NombreEmpresa { get; set; } = string.Empty;
|
2025-07-18 21:46:07 -03:00
|
|
|
public bool? Habilitada { get; set; }
|
2025-06-03 18:42:56 -03:00
|
|
|
}
|
|
|
|
|
}
|