blob: 80cf9e0d9cf9bf3739502a6532b82da2e4c5dd2e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
namespace Gestor.Model.Domain.Ferramentas;
public class LogEnvio
{
public bool Enviado { get; set; }
public Credencial Credencial { get; set; }
public Destinatario Destinatario { get; set; }
public string Erro { get; set; }
}
|