migracion: añadido entidades Auditoria

This commit is contained in:
2025-01-27 16:40:02 -03:00
parent 27f20b92e8
commit 00d4ec8a0e
4 changed files with 95 additions and 0 deletions

17
Entidades/Log.cs Normal file
View 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>();
}