actualizacion de entidades
This commit is contained in:
+7
-7
@@ -5,17 +5,17 @@ namespace Entidades;
|
||||
|
||||
public partial class Canon
|
||||
{
|
||||
public long id { get; set; }
|
||||
public long Id { get; set; }
|
||||
|
||||
public DateTime fecha { get; set; }
|
||||
public DateTime Fecha { get; set; }
|
||||
|
||||
public decimal monto { get; set; }
|
||||
public decimal Monto { get; set; }
|
||||
|
||||
public long? idrecibo { get; set; }
|
||||
public long? Idrecibo { get; set; }
|
||||
|
||||
public ulong pagado { get; set; }
|
||||
public ulong Pagado { get; set; }
|
||||
|
||||
public virtual Recibo? idreciboNavigation { get; set; }
|
||||
public virtual Recibo? IdreciboNavigation { get; set; }
|
||||
|
||||
public virtual ICollection<Contrato> idcontratos { get; set; } = new List<Contrato>();
|
||||
public virtual ICollection<Contrato> Idcontratos { get; set; } = new List<Contrato>();
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user