22 lines
494 B
C#
22 lines
494 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace Entidades;
|
|
|
|
public partial class Garante
|
|
{
|
|
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<Contrato> idcontratos { get; set; } = new List<Contrato>();
|
|
}
|