28 lines
624 B
C#
28 lines
624 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Web;
|
|
using ULA.Cathay.CreditoModel.Credito;
|
|
using Ultimus.Interfaces;
|
|
|
|
namespace ULA.Cathay.Credito.Json
|
|
{
|
|
|
|
|
|
public class BaseJsonMetadata : UltimusJson
|
|
{
|
|
public int IdSolicitud { get; set; }
|
|
public int CoCliente { get; set; }
|
|
public int Incident { get; set; }
|
|
public string TaskID { get; set; }
|
|
public string Process { get; set; }
|
|
public string UserID { get; set; }
|
|
public bool SolicitudActicaUltimus { get; set; }
|
|
public int IdControlVisita{ get; set; }
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|
|
|