namespace GestionIntegral.Api.Dtos.Distribucion { public class PublicacionDto { public int IdPublicacion { get; set; } public string Nombre { get; set; } = string.Empty; public string? Observacion { get; set; } public int IdEmpresa { get; set; } public string NombreEmpresa { get; set; } = string.Empty; // Para mostrar en UI public bool CtrlDevoluciones { get; set; } public bool Habilitada { get; set; } // Simplificamos a bool, el backend manejará el default si es null } }