fix casing

This commit is contained in:
nicolas.dorier
2018-02-19 15:13:45 +09:00
parent a634593903
commit 271cbf682f
2 changed files with 4 additions and 4 deletions

View File

@@ -9,7 +9,7 @@ namespace BTCPayServer.Models.InvoicingModels
{
public class AvailableCrypto
{
public string paymentMethodId { 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 paymentMethodId { get; internal set; }
public string PaymentMethodId { get; internal set; }
}
}