using System; using System.Collections.Generic; namespace Entidades; public partial class Usuario { public int id { get; set; } public string email { get; set; } = null!; public byte[] contraseña { get; set; } = null!; public string token { get; set; } = null!; public virtual ICollection Clientes { get; set; } = new List(); public virtual ICollection idgrupos { get; set; } = new List(); }