blob: 2e7a67cc8f54c4a4c04e6f68b9c536e8f8957721 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
namespace Gestor.Model.Domain.Relatorios;
public class CartaoSegurado
{
public string Nome { get; set; }
public string Apolice { get; set; }
public string Vigencia { get; set; }
public string Item { get; set; }
public string Seguradora { get; set; }
public string LinkApolice { get; set; }
public string Assistencia { get; set; }
public string TelefoneCorretor { get; set; }
}
|