blob: 640e86920e270be3e902e669bfdcc89c113f9030 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
using System.Collections.Generic;
namespace Gestor.Model.CalculoWeb.VidaGlobal;
public class QuestionarioVidaGlobal
{
public int Id { get; set; }
public List<string> Atividades { get; set; }
public string Cnae { get; set; }
public int Funcionario { get; set; }
}
|