Big refactoring renaming cryptoData => PaymentMethod

This commit is contained in:
nicolas.dorier
2018-02-19 15:09:05 +09:00
parent af94de93d1
commit a634593903
17 changed files with 269 additions and 230 deletions

View File

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