using System; using System.Collections.Generic; namespace bdHerramientaCACOA.db; public partial class usuarios { public int idUsuario { get; set; } public int Codigo { get; set; } public string Contrasena { get; set; } = null!; public DateTime FechaCreacion { get; set; } public DateTime FechaUltimoAcceso { get; set; } public virtual ICollection simulaciones { get; set; } = new List(); }