summaryrefslogtreecommitdiff
path: root/Gestor.Model/Gestor.Model.CalculoWeb.Auto/CoberturaAuto.cs
blob: 660b1a8e32bf5e4e408c2a2086a5d28eaf6504ab (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
namespace Gestor.Model.CalculoWeb.Auto;

public class CoberturaAuto
{
	public string DanosMorais { get; set; }

	public string DanosMateriais { get; set; }

	public string DanosCorporais { get; set; }

	public string MorteInvalidez { get; set; }

	public decimal FatorAjuste { get; set; }

	public string TipoCobertura { get; set; }

	public string TipoFranquia { get; set; }

	public string Assistencia { get; set; }

	public string CarroReserva { get; set; }

	public string Vidros { get; set; }

	public string DespesasExtras { get; set; }

	public decimal KitGas { get; set; }

	public decimal Carroceria { get; set; }

	public decimal Equipamento { get; set; }

	public decimal Blindagem { get; set; }

	public string ArCondicionado { get; set; }

	public string GarantiaZero { get; set; }

	public string ReparoRapido { get; set; }

	public string ProtecaoBuracos { get; set; }

	public int Id { get; set; }
}