blob: 734bc5e79653bb25c2823e9698f2fc5c67fa029c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
namespace Gestor.Model.CalculoWeb.VidaGlobal;
public class CoberturaVidaGlobal
{
public int Id { get; set; }
public int Funcionario { get; set; }
public decimal? CapitalFuncionario { get; set; }
public int Socio { get; set; }
public decimal? CapitalSocio { get; set; }
public string MorteAcidental { get; set; }
public string Ifpd { get; set; }
public string Ipa { get; set; }
public string AssistenciaFuneral { get; set; }
}
|