51 lines
1.7 KiB
C#
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; }
|
|
|
|
}
|
|
|
|
}
|