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(); }