namespace GestionIntegral.Api.Models.Distribucion { public class PubliSeccion { public int IdSeccion { get; set; } // Id_Seccion public int IdPublicacion { get; set; } public string Nombre { get; set; } = string.Empty; public bool Estado { get; set; } } }