blob: 7e2b60a1e93612caa206233199a8f96fbe827dc4 (
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
|
using System.Collections.Generic;
using Gestor.Model.Domain.Common;
using Gestor.Model.Domain.Generic;
namespace Gestor.Model.Domain.Ferramentas;
public class Destinatario : DomainBase
{
public string Nome { get; set; }
public string Sobrenome { get; set; }
public string Email { get; set; }
public List<string> Encaminhar { get; set; }
public List<string> EncaminharOculto { get; set; }
public string Assunto { get; set; }
public string Corpo { get; set; }
public List<ArquivoDigital> Anexos { get; set; }
}
|