Files
AlquilaFacil/Entidades/Canon.cs
2024-10-28 22:42:02 -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>();
}