Rechnungen werden in lexoffice nun erstellt

This commit is contained in:
2023-07-12 20:44:06 +02:00
parent 85c43cce77
commit 632f5ab236
7 changed files with 386 additions and 27 deletions

View File

@@ -0,0 +1,15 @@
using Newtonsoft.Json;
namespace ConsoleApp3.DataContracts
{
public class InvoiceLineUnitPrice
{
[JsonProperty("currency")] public string Currency { get; set; }
[JsonProperty("netAmount")] public decimal NetAmount { get; set; }
[JsonProperty("grossAmount")] public decimal GrossAmount { get; set; }
[JsonProperty("taxRatePercentage")] public decimal TaxRatePercentage { get; set; }
}
}