1
0
mirror of https://github.com/ncblakely/GiantsTools synced 2024-06-26 16:11:44 +02:00
GiantsTools/Giants.Services/Core/IDateTimeProvider.cs
2020-08-08 16:31:21 -07:00

10 lines
141 B
C#

namespace Giants.Services.Core
{
using System;
public interface IDateTimeProvider
{
DateTime UtcNow { get; }
}
}