mirror of
https://github.com/JKorf/CryptoExchange.Net.git
synced 2026-08-24 22:55:40 +00:00
Feature/ratelimit refactor (#197)
This commit is contained in:
@@ -0,0 +1,20 @@
|
||||
using System;
|
||||
|
||||
namespace CryptoExchange.Net.RateLimiting
|
||||
{
|
||||
/// <summary>
|
||||
/// Rate limit item type
|
||||
/// </summary>
|
||||
[Flags]
|
||||
public enum RateLimitItemType
|
||||
{
|
||||
/// <summary>
|
||||
/// A connection attempt
|
||||
/// </summary>
|
||||
Connection = 1,
|
||||
/// <summary>
|
||||
/// A request
|
||||
/// </summary>
|
||||
Request = 2
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user