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-07-03 14:22:44 +00:00
|
|
|
|
public Calendario Evento { get; set; }
|
|
|
|
|
|
public List<EventosJSON> EventosJSON { get; set; }
|
2018-07-05 12:57:25 +00:00
|
|
|
|
public PlantillaEmail PlantillaEmail { get; set; }
|
|
|
|
|
|
public TareasPendientes TareasPendientes { get; set; }
|
|
|
|
|
|
public List<TareasPendientes> ListaTareasPendientes { get; set; }
|
2018-06-19 21:39:20 +00:00
|
|
|
|
}
|
2018-07-12 14:12:05 +00:00
|
|
|
|
|
|
|
|
|
|
//Ficha tecnica
|
|
|
|
|
|
public class FichaTecnicaJSON : BaseJson
|
|
|
|
|
|
{
|
|
|
|
|
|
public FichaTecnica FichaTecnica { get; set; }
|
|
|
|
|
|
public FichaTecnicaPalabraClave PalabraClave { get; set; }
|
|
|
|
|
|
public List<FichaTecnica> FichasTecnicas { get; set; }
|
|
|
|
|
|
public List<FichaTecnicaPalabraClave> ListaPalabraClave { get; set; }
|
|
|
|
|
|
public List<EventosJSON> EventosJSON { get; set; }
|
|
|
|
|
|
public TareasPendientes TareasPendientes { get; set; }
|
|
|
|
|
|
public List<TareasPendientes> ListaTareasPendientes { get; set; }
|
2018-07-26 22:53:02 +00:00
|
|
|
|
public PlantillaEmail PlantillaEmail { get; set; }
|
|
|
|
|
|
public List<Usuario> ListaParticipantes { get; set; }
|
|
|
|
|
|
public string Mensaje { get; set; }
|
2018-07-16 20:10:02 +00:00
|
|
|
|
public int? IdPalabra { get; set; }
|
|
|
|
|
|
public int? IdFichaTecnica { get; set; }
|
2018-07-20 19:50:37 +00:00
|
|
|
|
|
2018-07-12 14:12:05 +00:00
|
|
|
|
}
|
2018-06-28 17:44:24 +00:00
|
|
|
|
public class AdjuntosJSON : BaseJson
|
|
|
|
|
|
{
|
2018-06-29 20:40:24 +00:00
|
|
|
|
public List<DocumentosAdjuntos> ListaAdjuntos { get; set; }
|
|
|
|
|
|
public DocumentosAdjuntos Adjuntos { get; set; }
|
2018-06-28 17:44:24 +00:00
|
|
|
|
public string Nombre { get; set; }
|
2018-06-28 20:59:04 +00:00
|
|
|
|
public string Tipo { get; set; }
|
|
|
|
|
|
public string Id { get; set; }
|
2018-06-28 17:44:24 +00:00
|
|
|
|
public string Carpeta { get; set; }
|
2018-07-02 19:19:09 +00:00
|
|
|
|
public int? IdDocumentoAdjunto { get; set; }
|
2018-07-03 14:22:44 +00:00
|
|
|
|
|
2018-06-28 17:44:24 +00:00
|
|
|
|
}
|
2018-07-03 14:22:44 +00:00
|
|
|
|
|
2018-07-05 12:57:25 +00:00
|
|
|
|
public class NotificacionesJSON : BaseJson
|
|
|
|
|
|
{
|
|
|
|
|
|
public int TareasPendientes { get; set; }
|
2018-07-20 18:46:23 +00:00
|
|
|
|
public int GotitasNormativas { get; set; }
|
2018-07-05 12:57:25 +00:00
|
|
|
|
public string codigo { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
}
|
2018-07-05 20:56:15 +00:00
|
|
|
|
public class LoginJSON : BaseJson
|
|
|
|
|
|
{
|
|
|
|
|
|
public string Usuario { get; set; }
|
|
|
|
|
|
public string Contrasena { get; set; }
|
|
|
|
|
|
public string NombreUsuario { get; set; }
|
|
|
|
|
|
public string LoginUsuario { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
}
|
2018-07-13 22:20:43 +00:00
|
|
|
|
|
|
|
|
|
|
//se agrega el SolicitudJSON
|
|
|
|
|
|
public class SolicitudJSON : BaseJson
|
|
|
|
|
|
{
|
|
|
|
|
|
public Solicitud Solicitud { get; set; }
|
|
|
|
|
|
public List<Solicitud> Solicitudes { get; set; }
|
|
|
|
|
|
public List<EventosJSON> EventosJSON { get; set; }
|
|
|
|
|
|
public PlantillaEmail PlantillaEmail { get; set; }
|
|
|
|
|
|
public TareasPendientes TareasPendientes { get; set; }
|
|
|
|
|
|
public List<TareasPendientes> ListaTareasPendientes { get; set; }
|
2018-07-27 18:19:28 +00:00
|
|
|
|
public List<Usuario> ListaUsuariosCorreo { get; set; }
|
2018-07-16 19:27:05 +00:00
|
|
|
|
public int? IdSolicitud { get; set; }
|
2018-07-23 18:25:08 +00:00
|
|
|
|
|
2018-07-23 21:59:48 +00:00
|
|
|
|
public int? IdTipoSolicitud { get; set; }
|
|
|
|
|
|
|
2018-07-23 18:25:08 +00:00
|
|
|
|
public string UsuarioSistema { get; set; }
|
2018-07-13 22:20:43 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
2018-06-05 22:51:02 +00:00
|
|
|
|
}
|