using Gestor.Model.CalculoWeb.Auto; using System; using System.Collections.Generic; using System.Runtime.CompilerServices; namespace Gestor.Model.CalculoWeb { public class Seguro { public decimal Agenciamento { get; set; } public string Banco { get; set; } public string Bonus { get; set; } public string CodigoIdentificacao { get; set; } public decimal Comissao { get; set; } public List ComissaoSeguradora { get; set; } public long Id { get; set; } public string NumeroApoliceAnterior { get; set; } public string Observacoes { get; set; } public bool RenovacaoGarantida { get; set; } public string SeguradoraAnterior { get; set; } public string Sinistros { get; set; } public string TipoSeguro { get; set; } public DateTime VigenciaFinal { get; set; } public DateTime VigenciaFinalAnterior { get; set; } public DateTime VigenciaInicial { get; set; } public Seguro() { } } }