Rechnungen werden in lexoffice nun erstellt
This commit is contained in:
15
ConsoleApp3/DataContracts/InvoiceLineUnitPrice.cs
Normal file
15
ConsoleApp3/DataContracts/InvoiceLineUnitPrice.cs
Normal 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; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user