Migración a percona

This commit is contained in:
2026-05-19 18:03:41 +02:00
parent c07d7dbe54
commit c204abdd4c
34 changed files with 159 additions and 117 deletions

View File

@@ -0,0 +1,26 @@
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; }
}
}