1
0
mirror of https://github.com/JKorf/CryptoExchange.Net.git synced 2026-08-20 04:42:57 +00:00

Fixed various resharper warning

This commit is contained in:
JKorf
2018-11-30 16:19:01 +01:00
parent 4c6218c8e3
commit 64a66d4206
17 changed files with 91 additions and 97 deletions
@@ -0,0 +1,9 @@
using CryptoExchange.Net.Objects;
namespace CryptoExchange.Net.Interfaces
{
public interface IRateLimiter
{
CallResult<double> LimitRequest(string url, RateLimitingBehaviour limitBehaviour);
}
}