blob: e5b426a48bdee906b5b3ebfa55a6bb0c1f05ac77 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
namespace Gestor.Model.CalculoWeb.Auto;
public class CalculoAuto
{
public Segurado Segurado { get; set; }
public CondutorPrincipal CondutorPrincipal { get; set; }
public Veiculo Veiculo { get; set; }
public QuestionarioAuto Questionario { get; set; }
public Caminhao Caminhao { get; set; }
public CoberturaAuto Cobertura { get; set; }
public Seguro Seguro { get; set; }
public int TipoVeiculo { get; set; }
}
|