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