Ensure that there is no LN/Bitcoin specific logic in the Invoice UI endpoint

This commit is contained in:
Kukks
2020-11-06 11:09:17 +01:00
parent a729dd1380
commit e021d42551
11 changed files with 35 additions and 45 deletions

View File

@@ -25,10 +25,8 @@ namespace BTCPayServer.Models.InvoicingModels
public string CustomLogoLink { get; set; }
public string HtmlTitle { get; set; }
public string DefaultLang { get; set; }
public bool LightningAmountInSatoshi { get; set; }
public List<AvailableCrypto> AvailableCryptos { get; set; } = new List<AvailableCrypto>();
public bool IsModal { get; set; }
public bool IsLightning { get; set; }
public string CryptoCode { get; set; }
public string InvoiceId { get; set; }
public string BtcAddress { get; set; }
@@ -71,5 +69,6 @@ namespace BTCPayServer.Models.InvoicingModels
public string RootPath { get; set; }
public decimal CoinSwitchAmountMarkupPercentage { get; set; }
public bool RedirectAutomatically { get; set; }
public string InvoiceCurrency { get; set; }
}
}