mirror of
https://github.com/JKorf/CryptoExchange.Net.git
synced 2026-08-12 17:03:10 +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();
|
|
}
|
|
}
|