blob: 97e073ef4b74609a130bbee267134d4fd14d9fe1 (
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
|
namespace Gestor.Model.CalculoWeb.VidaIndividual;
public class CoberturaVidaIndividual
{
public int? Id { get; set; }
public decimal? Capital { get; set; }
public decimal? CapitalDoenca { get; set; }
public decimal? CapitalDit { get; set; }
public decimal CapitalDih { get; set; }
public string Morte { get; set; }
public string MorteAcidental { get; set; }
public string Ipa { get; set; }
public string Ifpd { get; set; }
public string AssistenciaFuneral { get; set; }
public decimal? CapitalIpa { get; set; }
public decimal? CapitalIfpd { get; set; }
public decimal? CapitalMorteAcidental { get; set; }
public string DoencaGrave { get; set; }
public string Dit { get; set; }
public string Dih { get; set; }
}
|