diff options
| author | Lucas Faria Mendes <lucas.fariamo08@gmail.com> | 2026-03-30 17:17:46 +0000 |
|---|---|---|
| committer | Lucas Faria Mendes <lucas.fariamo08@gmail.com> | 2026-03-30 17:17:46 +0000 |
| commit | 0440c722a221b8068bbf388c1c0c51f0faff0451 (patch) | |
| tree | 169cbf90c50ff7961db82ecb606c50c2a45a1688 /Gestor.Model/Gestor.Model.API/LogError.cs | |
| parent | 225aa1499e37faf9d38257caabbadc68d78b427e (diff) | |
| download | gestor-master.tar.gz gestor-master.zip | |
Diffstat (limited to 'Gestor.Model/Gestor.Model.API/LogError.cs')
| -rw-r--r-- | Gestor.Model/Gestor.Model.API/LogError.cs | 44 |
1 files changed, 44 insertions, 0 deletions
diff --git a/Gestor.Model/Gestor.Model.API/LogError.cs b/Gestor.Model/Gestor.Model.API/LogError.cs new file mode 100644 index 0000000..c300ba4 --- /dev/null +++ b/Gestor.Model/Gestor.Model.API/LogError.cs @@ -0,0 +1,44 @@ +using System; + +namespace Gestor.Model.API; + +public class LogError +{ + public long Id { get; set; } + + public long IdFornecedor { get; set; } + + public string Fornecedor { get; set; } + + public string UsuarioLogado { get; set; } + + public long IdUsuarioLogado { get; set; } + + public string Versao { get; set; } + + public DateTime Data { get; set; } + + public int IdErro { get; set; } + + public string Erro { get; set; } + + public int HResult { get; set; } + + public string HelpLink { get; set; } + + public string InnerException { get; set; } + + public string Message { get; set; } + + public string Source { get; set; } + + public string StackTrace { get; set; } + + public string Maquina { get; set; } + + public string UsuarioMaquina { get; set; } + + public string Linha { get; set; } + + public string Objeto { get; set; } +} |