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 LogDetalles { get; set; } = new List(); }