diff options
Diffstat (limited to 'Gestor.Model/Gestor.Model.Domain.Relatorios.LogsEnvio/LogsEnvio.cs')
| -rw-r--r-- | Gestor.Model/Gestor.Model.Domain.Relatorios.LogsEnvio/LogsEnvio.cs | 145 |
1 files changed, 145 insertions, 0 deletions
diff --git a/Gestor.Model/Gestor.Model.Domain.Relatorios.LogsEnvio/LogsEnvio.cs b/Gestor.Model/Gestor.Model.Domain.Relatorios.LogsEnvio/LogsEnvio.cs new file mode 100644 index 0000000..305f50c --- /dev/null +++ b/Gestor.Model/Gestor.Model.Domain.Relatorios.LogsEnvio/LogsEnvio.cs @@ -0,0 +1,145 @@ +using System; +using System.ComponentModel; +using Gestor.Model.Attributes; + +namespace Gestor.Model.Domain.Relatorios.LogsEnvio; + +public class LogsEnvio +{ + private string _remetente; + + private string _destinatarios; + + private string _cco; + + private string _assunto; + + private string _maquina; + + private string _usuarioAgger; + + private string _usuarioMaquina; + + private string _tela; + + [Tipo("INVALID")] + public bool Selecionado { get; set; } + + [Description("REMETENTE")] + public string Remetente + { + get + { + return _remetente?.ToLower(); + } + set + { + _remetente = value; + } + } + + [Description("DESTINATÁRIOS")] + public string Destinatarios + { + get + { + return _destinatarios?.ToLower(); + } + set + { + _destinatarios = value; + } + } + + [Description("CCO")] + public string Cco + { + get + { + return _cco?.ToLower(); + } + set + { + _cco = value; + } + } + + [Description("ASSUNTO")] + public string Assunto + { + get + { + return _assunto?.ToUpper(); + } + set + { + _assunto = value; + } + } + + [Description("TELA")] + public string Tela + { + get + { + return _tela?.ToUpper(); + } + set + { + _tela = value; + } + } + + [Tipo("DATA")] + [Description("DATA")] + public DateTime Data { get; set; } + + [Description("MÁQUINA")] + public string Maquina + { + get + { + return _maquina?.ToUpper(); + } + set + { + _maquina = value; + } + } + + [Description("USUÁRIO AGGER")] + public string UsuarioAgger + { + get + { + return _usuarioAgger?.ToUpper(); + } + set + { + _usuarioAgger = value; + } + } + + [Description("USUÁRIO DA MÁQUINA")] + public string UsuarioMaquina + { + get + { + return _usuarioMaquina?.ToUpper(); + } + set + { + _usuarioMaquina = value; + } + } + + [Description("IP")] + public string Ip { get; set; } + + [Description("VERSÃO")] + public string Versao { get; set; } + + [Tipo("INVALID")] + [Description("ID")] + public long Id { get; set; } +} |