23 lines
685 B
C#
23 lines
685 B
C#
using AYA.SlnSinortModel.Sinort;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace AYA.SlnSinortModel.Entidades
|
|
{
|
|
public class BaseJson
|
|
{
|
|
public string CodigoRespuesta { get; set; }
|
|
public string DescripcionRespuesta { get; set; }
|
|
}
|
|
|
|
public class ProyectoNormativoJSON : BaseJson
|
|
{
|
|
public ProyectoNormativo ProyectoNormativo { get; set; }
|
|
public Convocatoria Convocado { get; set; }
|
|
public List<ProyectoNormativo> ProyectosNormativos { get; set; }
|
|
public List<Convocatoria> ListaConvocatoria { get; set; }
|
|
}
|
|
}
|