9 lines
361 B
C#
9 lines
361 B
C#
|
|
public class FacturaDetalle {
|
||
|
|
public int IdFacturaDetalle { get; set; }
|
||
|
|
public int IdFactura { get; set; }
|
||
|
|
public int IdSuscripcion { get; set; }
|
||
|
|
public string Descripcion { get; set; } = string.Empty;
|
||
|
|
public decimal ImporteBruto { get; set; }
|
||
|
|
public decimal DescuentoAplicado { get; set; }
|
||
|
|
public decimal ImporteNeto { get; set; }
|
||
|
|
}
|