blob: e7a8e2474a9a2e5fd4a4ddb969a1a8a5c20c5751 (
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
|
using System.Collections.Generic;
using Gestor.Model.Common;
using Gestor.Model.Domain.Common;
using Gestor.Model.Domain.Seguros;
namespace Gestor.Model.Domain.MalaDireta;
public class MalaDireta
{
public bool Selecionado { get; set; }
public bool? Enviado { get; set; }
public string InfoEnvio { get; set; }
public string Email { get; set; }
public int Ordem { get; set; }
public Cliente Cliente { get; set; }
public Documento Apolice { get; set; }
public Parcela Parcela { get; set; }
public Item Item { get; set; }
public Sinistro Sinistro { get; set; }
public Prospeccao Prospeccao { get; set; }
public List<IndiceArquivoDigital> ArquivoDigital { get; set; }
public string Assunto { get; set; }
public string Corpo { get; set; }
public Copia Copia { get; set; }
public TipoTela Tela { get; set; }
public Relatorio Relatorio { get; set; }
}
|