PoS: Custom buy button text per product

Closes #2232.
This commit is contained in:
Dennis Reimann
2021-02-18 10:54:06 +01:00
parent b30aa968b0
commit 757c087afd
5 changed files with 20 additions and 5 deletions

View File

@@ -17,6 +17,7 @@ namespace BTCPayServer.Models.AppViewModels
public ItemPrice Price { get; set; }
public string Title { get; set; }
public bool Custom { get; set; }
public string BuyButtonText { get; set; }
public int? Inventory { get; set; } = null;
public string[] PaymentMethods { get; set; }
}