mirror of
https://github.com/JKorf/CryptoExchange.Net
synced 2026-04-08 02:31:11 +00:00
22 lines
522 B
C#
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
|
|
}
|
|
}
|