26 lines
789 B
C#
26 lines
789 B
C#
using System.Collections.Generic;
|
|
|
|
namespace bdAsegasa.Informes
|
|
{
|
|
public class DifPolSup
|
|
{
|
|
public string Compania { get; set; }
|
|
public string TomadorActual { get; set; }
|
|
public string NumPoliza { get; set; }
|
|
public string NumPropuesta { get; set; }
|
|
public string Ramo { get; set; }
|
|
public string Matricula { get; set; }
|
|
public string NumSuplemento { get; set; }
|
|
public List<Modificacion> ModEnPoliza { get; set; }
|
|
public List<Modificacion> ModEnAsegurados { get; set; }
|
|
public string Aclaracion1 { get; set; }
|
|
public string Aclaracion2 { get; set; }
|
|
}
|
|
|
|
public class Modificacion
|
|
{
|
|
public string Concepto { get; set; }
|
|
public string ValorNuevo { get; set; }
|
|
}
|
|
}
|