20 lines
556 B
C#
20 lines
556 B
C#
|
|
using System;
|
|||
|
|
using System.Collections.Generic;
|
|||
|
|
using System.Linq;
|
|||
|
|
using System.Text;
|
|||
|
|
using System.Threading.Tasks;
|
|||
|
|
|
|||
|
|
namespace ULA.Cathay.CreditoModel.StoreProcedures
|
|||
|
|
{
|
|||
|
|
public class IncidentesActivosClienteJOSN
|
|||
|
|
{
|
|||
|
|
public string NumeroIdentificacion { get; set; }
|
|||
|
|
public int IdCliente { get; set; }
|
|||
|
|
public int IdTipoTramite { get; set; }
|
|||
|
|
public int Incidente { get; set; }
|
|||
|
|
public int IdSolicitud { get; set; }
|
|||
|
|
public int IdEjecutivo { get; set; }
|
|||
|
|
public string IdLinea { get; set; }
|
|||
|
|
}
|
|||
|
|
}
|