blob: c01bfeedfa9d403f9b6bd1b065efdd88ffba3634 (
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
|
using System;
using System.Runtime.CompilerServices;
namespace Gestor.Model.Domain.Ferramentas
{
public class LogEnvio
{
public Gestor.Model.Domain.Ferramentas.Credencial Credencial
{
get;
set;
}
public Gestor.Model.Domain.Ferramentas.Destinatario Destinatario
{
get;
set;
}
public bool Enviado
{
get;
set;
}
public string Erro
{
get;
set;
}
public LogEnvio()
{
}
}
}
|