using System; using System.Collections.Generic; namespace Entidades; public partial class Garante { public int Id { get; set; } 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 Domiciliolaboral { get; set; } = null!; public virtual ICollection Idcontratos { get; set; } = new List(); }