using System; using System.Collections.Generic; namespace Entidades; public partial class Recibo { public long Id { get; set; } public DateTime Fecha { get; set; } public decimal Monto { get; set; } public virtual ICollection Canons { get; set; } = new List(); }