Remove CoinAverage integration

This commit is contained in:
nicolas.dorier
2020-01-17 14:29:22 +09:00
parent 1b9a4e7775
commit 9b165de5e6
8 changed files with 2 additions and 496 deletions

View File

@@ -1,17 +0,0 @@
using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.Linq;
using System.Threading.Tasks;
using BTCPayServer.Services.Rates;
namespace BTCPayServer.Models.ServerViewModels
{
public class RatesViewModel
{
[Display(Name = "Bitcoin average api keys")]
public string PublicKey { get; set; }
public string PrivateKey { get; set; }
public GetRateLimitsResponse RateLimits { get; internal set; }
}
}