ProyectoGrupal/dolibarr-bff/DoliMiddlewareApi/Dtos/query/InvoiceLineDto.cs

11 lines
307 B
C#

namespace DoliMiddlewareApi.Dtos;
public class InvoiceLineDto
{
public int Id { get; set; }
public string Description { get; set; }
public decimal Quantity { get; set; }
public decimal UnitPrice { get; set; }
public decimal TaxRate { get; set; }
public decimal Total { get; set; }
}