18 lines
402 B
C#
18 lines
402 B
C#
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>();
|
|
}
|