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 int? idusuario { get; set; } public virtual ICollection ContratodniinquilinoNavigations { get; set; } = new List(); public virtual ICollection ContratodnipropietarioNavigations { get; set; } = new List(); public virtual ICollection Propiedades { get; set; } = new List(); public virtual ICollection Ventaidprop_newNavigations { get; set; } = new List(); public virtual ICollection Ventaidprop_oldNavigations { get; set; } = new List(); public virtual Usuario? idusuarioNavigation { get; set; } }