mirror of
https://github.com/JKorf/CryptoExchange.Net
synced 2025-07-06 14:16:36 +00:00
17 lines
308 B
C#
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();
|
|
}
|
|
}
|