summaryrefslogtreecommitdiff
path: root/Gestor.Model/Gestor.Model.API/LogError.cs
blob: c300ba40ffc75763fa8153ed91f10d1281c18d52 (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
37
38
39
40
41
42
43
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; }
}