2018-06-22 18:02:17 +00:00
|
|
|
|
using Atesa.Utilitarios;
|
|
|
|
|
|
using AYA.SlnSinortModel.Sinort;
|
2018-06-19 21:39:20 +00:00
|
|
|
|
using System;
|
2018-06-05 22:51:02 +00:00
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
using System.Linq;
|
|
|
|
|
|
using System.Text;
|
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
2018-06-08 19:11:02 +00:00
|
|
|
|
namespace AYA.SlnSinortModel.Entidades
|
2018-06-05 22:51:02 +00:00
|
|
|
|
{
|
2018-06-22 18:02:17 +00:00
|
|
|
|
public class BaseJson : AtesaJSON
|
2018-06-05 22:51:02 +00:00
|
|
|
|
{
|
|
|
|
|
|
public string CodigoRespuesta { get; set; }
|
|
|
|
|
|
public string DescripcionRespuesta { get; set; }
|
|
|
|
|
|
}
|
2018-06-19 21:39:20 +00:00
|
|
|
|
|
|
|
|
|
|
public class ProyectoNormativoJSON : BaseJson
|
|
|
|
|
|
{
|
|
|
|
|
|
public ProyectoNormativo ProyectoNormativo { get; set; }
|
2018-06-21 15:23:08 +00:00
|
|
|
|
public Convocatoria Convocado { get; set; }
|
2018-06-22 18:02:17 +00:00
|
|
|
|
public ComentariosProyecto Comentario { get; set; }
|
2018-06-21 18:07:56 +00:00
|
|
|
|
public List<ProyectoNormativo> ProyectosNormativos { get; set; }
|
2018-06-21 18:38:43 +00:00
|
|
|
|
public List<Convocatoria> ListaConvocatoria { get; set; }
|
2018-06-19 21:39:20 +00:00
|
|
|
|
}
|
2018-06-28 17:44:24 +00:00
|
|
|
|
|
|
|
|
|
|
public class AdjuntosJSON : BaseJson
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
|
|
public string Nombre { get; set; }
|
|
|
|
|
|
public string Carpeta { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2018-06-22 22:02:10 +00:00
|
|
|
|
|
2018-06-05 22:51:02 +00:00
|
|
|
|
}
|