10 lines
299 B
C#
10 lines
299 B
C#
|
|
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; }
|
||
|
|
}
|
||
|
|
}
|