TFS_ANTIGUO/SInCathay/ULA.Cathay.CreditoModel/Entidades/UExcelEntidades.cs

42 lines
1 KiB
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ULA.Cathay.CreditoModel.Entidades
{
public class UExcelCelda
{
public string Referencia { get; set; }
public string Columna { get; set; }
public int Fila { get; set; }
}
public class UExcelCeldasSpreadSheet
{
public UExcelCelda Celda { get; set; }
public string Valor { get; set; }
public bool? Result { get; set; }
}
public class UExcelSpreadSheet
{
public int NoItem { get; set; }
public List<UExcelCeldasSpreadSheet> Celdas { get; set; }
}
public class UExcelJson : Ultimus.Interfaces.BaseJson
{
public string RutaDocumento { get; set; }
public string NombreDocumentoGenerado { get; set; }
public List<UExcelSpreadSheet> ListaSpreadSheet { get; set; }
public string RutaFisica { get; set; }
public string RutaVirtual { get; set; }
}
}