mirror of
https://github.com/JKorf/CryptoExchange.Net
synced 2026-04-07 18:21:30 +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;
|
|
}
|
|
}
|