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>();
|
|
}
|