9 lines
322 B
C#
9 lines
322 B
C#
namespace GestionIntegral.Api.Dtos.Distribucion
|
|
{
|
|
public class PublicacionDropdownDto
|
|
{
|
|
public int IdPublicacion { get; set; }
|
|
public string Nombre { get; set; } = string.Empty;
|
|
public bool Habilitada { get; set; } // Simplificamos a bool, el backend manejará el default si es null
|
|
}
|
|
} |