mirror of
https://github.com/JKorf/CryptoExchange.Net.git
synced 2026-08-13 09:23:04 +00:00
21 lines
377 B
C#
21 lines
377 B
C#
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
|
|
}
|
|
}
|