api para obtener datos de los logs

This commit is contained in:
2025-01-28 01:30:50 -03:00
parent 17fae0e777
commit c7880b03b3
4 changed files with 87 additions and 0 deletions
+7
View File
@@ -0,0 +1,7 @@
namespace Entidades.Dto;
public class LogDto {
public DateTime Fecha { get; set; }
public long Dniusuario { get; set; }
public string Accion { get; set; } = null!;
}