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

14 lines
413 B
C#

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; }
}