Add ability to set default currency for a store (#2998)

This commit is contained in:
Nicolas Dorier
2021-10-20 23:17:40 +09:00
committed by GitHub
parent 407f26b1dc
commit 4cf3249e0b
17 changed files with 129 additions and 64 deletions

View File

@@ -50,6 +50,10 @@ namespace BTCPayServer.Models.StoreViewModels
set;
}
[Display(Name = "Default currency")]
[MaxLength(10)]
public string DefaultCurrency { get; set; }
[Display(Name = "Allow anyone to create invoice")]
public bool AnyoneCanCreateInvoice { get; set; }