Allow the merchant to disable network fees at store level

This commit is contained in:
nicolas.dorier
2017-10-23 19:27:22 +09:00
parent abeb10cc8c
commit 5f8407b4b1
8 changed files with 525 additions and 1 deletions

View File

@@ -21,6 +21,7 @@ namespace BTCPayServer.Models.StoreViewModels
[Url]
[Display(Name = "Store Website")]
[MaxLength(500)]
public string StoreWebsite
{
get;
@@ -39,6 +40,12 @@ namespace BTCPayServer.Models.StoreViewModels
get; set;
}
[Display(Name = "Add network fee to invoice (vary with mining fees)")]
public bool NetworkFee
{
get; set;
}
public List<(string KeyPath, string Address)> AddressSamples
{
get; set;