27 lines
598 B
C#
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; }
|
|
}
|
|
}
|