1
0
mirror of https://github.com/JKorf/CryptoExchange.Net synced 2026-04-08 02:31:11 +00:00
2024-09-27 09:17:44 +02:00

22 lines
522 B
C#

namespace CryptoExchange.Net.SharedApis
{
/// <summary>
/// Supported pagination type
/// </summary>
public enum SharedPaginationSupport
{
/// <summary>
/// Pagination is not supported for this exchange request
/// </summary>
NotSupported,
/// <summary>
/// Pagination is in ascending order
/// </summary>
Ascending,
/// <summary>
/// Pagination is in descending order
/// </summary>
Descending
}
}