using System; using System.Collections.Generic; namespace Entidades; public partial class Cliente { public long Dni { get; set; } public string Nombre { get; set; } = null!; public string Apellido { get; set; } = null!; public string Domicilio { get; set; } = null!; public string Celular { get; set; } = null!; public string Email { get; set; } = null!; public byte[] ContraseƱa { get; set; } = null!; public string? Token { get; set; } public ulong Habilitado { get; set; } public string? EmailRecuperacion { get; set; } public string? F2a { get; set; } public virtual ICollection ContratoDniinquilinoNavigations { get; set; } = new List(); public virtual ICollection ContratoDnipropietarioNavigations { get; set; } = new List(); public virtual ICollection Logs { get; set; } = new List(); public virtual ICollection NotificacioneDniclienteNavigations { get; set; } = new List(); public virtual ICollection NotificacioneDniremitenteNavigations { get; set; } = new List(); public virtual ICollection Propiedades { get; set; } = new List(); public virtual ICollection VentaIdCompradorNavigations { get; set; } = new List(); public virtual ICollection VentaIdVendedorNavigations { get; set; } = new List(); public virtual ICollection Idgrupos { get; set; } = new List(); }