migracion: añadido entidades Auditoria
This commit is contained in:
17
Entidades/Log.cs
Normal file
17
Entidades/Log.cs
Normal file
@@ -0,0 +1,17 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace Entidades;
|
||||
|
||||
public partial class Log
|
||||
{
|
||||
public DateTime Fecha { get; set; }
|
||||
|
||||
public long Dniusuario { get; set; }
|
||||
|
||||
public string Accion { get; set; } = null!;
|
||||
|
||||
public virtual Cliente DniusuarioNavigation { get; set; } = null!;
|
||||
|
||||
public virtual ICollection<LogDetalle> LogDetalles { get; set; } = new List<LogDetalle>();
|
||||
}
|
||||
Reference in New Issue
Block a user