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