46 lines
1.5 KiB
C#
46 lines
1.5 KiB
C#
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 virtual ICollection<Contrato> ContratoDniinquilinoNavigations { get; set; } = new List<Contrato>();
|
|
|
|
public virtual ICollection<Contrato> ContratoDnipropietarioNavigations { get; set; } = new List<Contrato>();
|
|
|
|
public virtual ICollection<Log> Logs { get; set; } = new List<Log>();
|
|
|
|
public virtual ICollection<Notificacione> NotificacioneDniclienteNavigations { get; set; } = new List<Notificacione>();
|
|
|
|
public virtual ICollection<Notificacione> NotificacioneDniremitenteNavigations { get; set; } = new List<Notificacione>();
|
|
|
|
public virtual ICollection<Propiedade> Propiedades { get; set; } = new List<Propiedade>();
|
|
|
|
public virtual ICollection<Venta> VentaIdCompradorNavigations { get; set; } = new List<Venta>();
|
|
|
|
public virtual ICollection<Venta> VentaIdVendedorNavigations { get; set; } = new List<Venta>();
|
|
|
|
public virtual ICollection<Grupo> Idgrupos { get; set; } = new List<Grupo>();
|
|
}
|