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 Idcontratos { get; set; } = new List(); }