26 lines
583 B
C#
26 lines
583 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 string NumeroPoliza { get; set; }
|
|
|
|
public string RazonSocial { get; set; }
|
|
|
|
public DateOnly FechaEfecto { get; set; }
|
|
|
|
public DateOnly FechaVencimiento { get; set; }
|
|
|
|
public string Descripcion { get; set; }
|
|
|
|
public string NombreAgente { get; set; }
|
|
|
|
public string CiaNumeroPolizaSuplemento { get; set; }
|
|
}
|
|
}
|