dolibarr-bff/DoliMiddlewareApi/Dtos/Dolibarr/TemplateInvoiceLineResponse.cs

14 lines
413 B
C#
Raw Permalink Normal View History

2026-05-16 22:01:26 +00:00
namespace DoliMiddlewareApi.Dtos.Dolibarr;
public class TemplateInvoiceLineResponse
{
public int id { get; set; }
public string? description { get; set; }
public decimal qty { get; set; }
public decimal subprice { get; set; }
public decimal tva_tx { get; set; }
public decimal total_ht { get; set; }
public decimal total_tva { get; set; }
public decimal total_ttc { get; set; }
}