22 lines
452 B
C#
22 lines
452 B
C#
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<Contrato> Idcontratos { get; set; } = new List<Contrato>();
|
|
}
|