15 lines
436 B
C#
15 lines
436 B
C#
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; }
|
|
}
|
|
} |