54 lines
1.3 KiB
C#
54 lines
1.3 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace Entidades;
|
|
|
|
public partial class Contrato
|
|
{
|
|
public long Id { get; set; }
|
|
|
|
public DateTime Fechainicio { get; set; }
|
|
|
|
public decimal Indiceactualizacion { get; set; }
|
|
|
|
public decimal Monto { get; set; }
|
|
|
|
public long? Dniinquilino { get; set; }
|
|
|
|
public long? Dnipropietario { get; set; }
|
|
|
|
public int? Idpropiedad { get; set; }
|
|
|
|
public int Cantgarantemin { get; set; }
|
|
|
|
public ulong Tieneopcionventa { get; set; }
|
|
|
|
public long? Idventa { get; set; }
|
|
|
|
public ulong Habilitado { get; set; }
|
|
|
|
public int MesesHastaAumento { get; set; }
|
|
|
|
public string? UrlContrato { get; set; }
|
|
|
|
public ulong Cancelado { get; set; }
|
|
|
|
public int Iddivisa { get; set; }
|
|
|
|
public virtual ICollection<Defecto> Defectos { get; set; } = new List<Defecto>();
|
|
|
|
public virtual Cliente? DniinquilinoNavigation { get; set; }
|
|
|
|
public virtual Cliente? DnipropietarioNavigation { get; set; }
|
|
|
|
public virtual Divisa IddivisaNavigation { get; set; } = null!;
|
|
|
|
public virtual Propiedade? IdpropiedadNavigation { get; set; }
|
|
|
|
public virtual Venta? IdventaNavigation { get; set; }
|
|
|
|
public virtual ICollection<Canon> Idcanons { get; set; } = new List<Canon>();
|
|
|
|
public virtual ICollection<Garante> Idgarantes { get; set; } = new List<Garante>();
|
|
}
|