Add itemCode to Invoice Response (#784)

closes #779
This commit is contained in:
Andrew Camilleri
2019-04-24 15:36:35 +02:00
committed by Nicolas Dorier
parent d0d077642d
commit 44d1419af9
2 changed files with 15 additions and 0 deletions

View File

@@ -121,6 +121,12 @@ namespace BTCPayServer.Models
//"itemDesc":"Some description"
[JsonProperty("itemDesc")]
public string ItemDesc
{
get; set;
}
[JsonProperty("itemCode")]
public string ItemCode
{
get; set;
}