mirror of
https://github.com/JKorf/CryptoExchange.Net.git
synced 2026-08-12 00:43:03 +00:00
11 lines
218 B
C#
11 lines
218 B
C#
using CryptoExchange.Net.Interfaces;
|
|
using System;
|
|
|
|
namespace CryptoExchange.Net.Objects
|
|
{
|
|
internal class AuthTimeProvider : IAuthTimeProvider
|
|
{
|
|
public DateTime GetTime() => DateTime.UtcNow;
|
|
}
|
|
}
|