7 lines
96 B
C#
7 lines
96 B
C#
namespace GymLogAI.Core.Abstractions;
|
|
|
|
public interface IClock
|
|
{
|
|
DateTime UtcNow { get; }
|
|
}
|