TFS_ANTIGUO/SInCathay/ULA.Cathay.Credito/Json/BaseJsonMetadata.cs

29 lines
624 B
C#
Raw Normal View History

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; }
}
}