26 lines
585 B
C#
26 lines
585 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using PropertyChanged;
|
|
|
|
namespace bdAsegasa.db;
|
|
|
|
[AddINotifyPropertyChangedInterface]
|
|
public partial class detallesamortizacionrecibos
|
|
{
|
|
public int idDetalle { get; set; }
|
|
|
|
public int Mes { get; set; }
|
|
|
|
public double ValorAmortizado { get; set; }
|
|
|
|
public double ValorAcumulado { get; set; }
|
|
|
|
public double ValorResidual { get; set; }
|
|
|
|
public int? idAmortizacion { get; set; }
|
|
|
|
public DateTime? FechaAplicacion { get; set; }
|
|
|
|
public virtual amortizacionrecibos? idAmortizacionNavigation { get; set; }
|
|
}
|