Big refactoring for supporting new type of payment

This commit is contained in:
nicolas.dorier
2018-02-19 02:38:03 +09:00
parent 752133b01c
commit aa4519ac30
17 changed files with 540 additions and 214 deletions

View File

@@ -9,7 +9,7 @@ namespace BTCPayServer.Models.InvoicingModels
{
public class AvailableCrypto
{
public string CryptoCode { get; set; }
public string CryptoDataId { get; set; }
public string CryptoImage { get; set; }
public string Link { get; set; }
}
@@ -40,5 +40,7 @@ namespace BTCPayServer.Models.InvoicingModels
public string CryptoImage { get; set; }
public string NetworkFeeDescription { get; internal set; }
public int MaxTimeMinutes { get; internal set; }
public string PaymentType { get; internal set; }
public string CryptoDataId { get; internal set; }
}
}