Point of Sale returns correct currency information (#450)

This commit is contained in:
nicolas.dorier
2018-12-18 00:25:17 +09:00
parent 7b27d6f0bb
commit 7a4dee3d38
3 changed files with 55 additions and 15 deletions

View File

@@ -28,7 +28,8 @@ namespace BTCPayServer.Models.AppViewModels
public string CurrencySymbol { get; set; }
public string ThousandSeparator { get; set; }
public string DecimalSeparator { get; set; }
public int Divisibility { get; internal set; }
public int Divisibility { get; set; }
public bool SymbolSpace { get; set; }
}
public CurrencyInfoData CurrencyInfo { get; set; }