37 lines
1 KiB
C#
37 lines
1 KiB
C#
using Atesa.Utilitarios;
|
|
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 : AtesaJSON
|
|
{
|
|
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 ComentariosProyecto Comentario { get; set; }
|
|
public List<ProyectoNormativo> ProyectosNormativos { get; set; }
|
|
public List<Convocatoria> ListaConvocatoria { get; set; }
|
|
}
|
|
|
|
public class AdjuntosJSON : BaseJson
|
|
{
|
|
|
|
public string Nombre { get; set; }
|
|
public string Tipo { get; set; }
|
|
public string Id { get; set; }
|
|
public string Carpeta { get; set; }
|
|
|
|
}
|
|
|
|
|
|
}
|