TFS_ANTIGUO/AYA.SlnSynor/AYA.SlnSynorModel/Entidades/Json.cs
jnunez 8d5aa412cc agregar
git-tfs-id: [http://192.168.1.10:8080/tfs/AyA]$/SINORT;C166
2018-07-05 12:57:25 +00:00

51 lines
1.7 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 Calendario Evento { get; set; }
public List<EventosJSON> EventosJSON { get; set; }
public PlantillaEmail PlantillaEmail { get; set; }
public TareasPendientes TareasPendientes { get; set; }
public List<TareasPendientes> ListaTareasPendientes { get; set; }
}
public class AdjuntosJSON : BaseJson
{
public List<DocumentosAdjuntos> ListaAdjuntos { get; set; }
public DocumentosAdjuntos Adjuntos { get; set; }
public string Nombre { get; set; }
public string Tipo { get; set; }
public string Id { get; set; }
public string Carpeta { get; set; }
public int? IdDocumentoAdjunto { get; set; }
}
public class NotificacionesJSON : BaseJson
{
public int TareasPendientes { get; set; }
public int GotitasInformativas { get; set; }
public string codigo { get; set; }
}
}