Files
AlquilaFacil/Entidades/Canon.cs
2024-10-19 18:00:26 -03:00

22 lines
452 B
C#

using System;
using System.Collections.Generic;
namespace Entidades;
public partial class Canon
{
public long id { get; set; }
public DateTime fecha { get; set; }
public decimal monto { get; set; }
public long? idrecibo { get; set; }
public ulong pagado { get; set; }
public virtual Recibo? idreciboNavigation { get; set; }
public virtual ICollection<Contrato> idcontratos { get; set; } = new List<Contrato>();
}