1
0
mirror of https://github.com/JKorf/CryptoExchange.Net synced 2025-07-06 14:16:36 +00:00
2024-05-01 19:24:53 +02:00

17 lines
308 B
C#

using System;
namespace CryptoExchange.Net.Interfaces
{
/// <summary>
/// Time provider
/// </summary>
internal interface IAuthTimeProvider
{
/// <summary>
/// Get current time
/// </summary>
/// <returns></returns>
DateTime GetTime();
}
}