23 lines
No EOL
747 B
C#
23 lines
No EOL
747 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Web.Http;
|
|
using ULA.Davivienda.PrendarioModel.Prendario;
|
|
|
|
namespace ULA.Davivienda.PrestamoAutos.Json
|
|
{
|
|
public class JsonSolicitud : JsonResponseBase
|
|
{
|
|
public Solicitud Solicitud { get; set; }
|
|
public List<JsonDatosCotizacion> DatosCotizacion { get; set; }
|
|
public List<Solicitante> Solicitante { get; set; }
|
|
public HistorialDecision HistorialDecision { get; set; }
|
|
public EjecutivoCotizacion EjecutivoCotizacion { get; set; }
|
|
public List<SegurosCotizacion> SegurosCotizacion { get; set; }
|
|
}
|
|
|
|
public class JsonConexion : JsonResponseBase
|
|
{
|
|
public RolUsuario RolUsuario { get; set; }
|
|
}
|
|
} |