a ver si no me olcideo de commitear otra vez

This commit is contained in:
2024-09-03 23:47:16 -03:00
parent 5d3636ae22
commit b130f55933
25 changed files with 820 additions and 108 deletions
+21
View File
@@ -0,0 +1,21 @@
using System;
using System.Collections.Generic;
namespace Entidades;
public partial class Canon
{
public int Id { get; set; }
public int Mes { get; set; }
public decimal Monto { get; set; }
public bool Pagado { get; set; }
public int? Idrecibo { get; set; }
public virtual Recibo? IdreciboNavigation { get; set; }
public virtual ICollection<Contrato> Idcontratos { get; set; } = new List<Contrato>();
}