Files
AlquilaFacil/Entidades/Usuario.cs
2024-10-19 18:00:26 -03:00

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