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? lines { get; set; } }