blob: 6027ff9f36655d0a2bd3bc64f04d3ef3c6aab078 (
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
45
46
|
namespace Gestor.Model.CalculoWeb.Residencia;
public class CoberturaResidencia
{
public decimal Basica { get; set; }
public decimal DanosMorais { get; set; }
public decimal ResponsabilidadeCivilFamiliar { get; set; }
public decimal DanosEletricos { get; set; }
public decimal Equipamentos { get; set; }
public decimal ImpactoVeiculos { get; set; }
public decimal Aluguel { get; set; }
public decimal Vidros { get; set; }
public decimal RouboFurto { get; set; }
public decimal Vazamentos { get; set; }
public decimal Vendaval { get; set; }
public decimal Desmoronamento { get; set; }
public decimal TumultoGreve { get; set; }
public decimal RecomposicaoDocumento { get; set; }
public decimal Bike { get; set; }
public string Assistencia { get; set; }
public string Verba { get; set; }
public string ValorNovo { get; set; }
public decimal Alagamento { get; set; }
public decimal PlacasSolares { get; set; }
public int Id { get; set; }
}
|