Files
Asegasa.NET/Servicio Gestion Asegasa/Clases/PolizaPagoUnicoExcel.cs
manuel 699f0efcd1 - 2026-05-12 1.2.0.0 Correccion tsUtilidades
- 2026-05-12 1.1.0.0 Se añade rutina diaria FinalizaPolizasPagoUnicoVencidas
2026-05-12 13:32:44 +02:00

27 lines
598 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Servicio_Gestion_Asegasa.Clases
{
public class PolizaPagoUnicoExcel
{
public int idPoliza { get; set; }
public string NumeroPoliza { get; set; }
public string Tomador { get; set; }
public DateOnly FechaEfecto { get; set; }
public DateOnly FechaVencimiento { get; set; }
public string Ramo { get; set; }
public string NombreAgente { get; set; }
public string Compañia { get; set; }
}
}