Files
AlquilaFacil/Entidades/Usuario.cs

20 lines
451 B
C#

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; }
public virtual ICollection<Cliente> Clientes { get; set; } = new List<Cliente>();
public virtual ICollection<Grupo> idgrupos { get; set; } = new List<Grupo>();
}