22 lines
442 B
C#
22 lines
442 B
C#
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>();
|
|
}
|