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

15 lines
475 B
C#
Raw Normal View History

namespace DoliMiddlewareApi.Dtos.Dolibarr;
public class TemplateInvoiceResponse
{
public int id { get; set; }
public string? @ref { get; set; }
public int socid { get; set; }
public decimal total_ht { get; set; }
public decimal total_tva { get; set; }
public decimal total_ttc { get; set; }
public string? note_public { get; set; }
public string? note_private { get; set; }
public List<TemplateInvoiceLineResponse>? lines { get; set; }
}