diff options
Diffstat (limited to 'Gestor.Model/Gestor.Model.Domain.Common/RegistroLog.cs')
| -rw-r--r-- | Gestor.Model/Gestor.Model.Domain.Common/RegistroLog.cs | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/Gestor.Model/Gestor.Model.Domain.Common/RegistroLog.cs b/Gestor.Model/Gestor.Model.Domain.Common/RegistroLog.cs new file mode 100644 index 0000000..69dfef4 --- /dev/null +++ b/Gestor.Model/Gestor.Model.Domain.Common/RegistroLog.cs @@ -0,0 +1,31 @@ +using System; +using Gestor.Model.Common; +using Gestor.Model.Domain.Generic; +using Gestor.Model.Domain.Seguros; + +namespace Gestor.Model.Domain.Common; + +public class RegistroLog : DomainBase +{ + public long EntidadeId { get; set; } + + public TipoAcao Acao { get; set; } + + public TipoTela Tela { get; set; } + + public DateTime DataHora { get; set; } + + public string Descricao { get; set; } + + public string Versao { get; set; } + + public Usuario Usuario { get; set; } + + public string NomeMaquina { get; set; } + + public string UsuarioMaquina { get; set; } + + public string Ip { get; set; } + + public bool ModeloNovo { get; set; } +} |