6 lines
107 B
C#
6 lines
107 B
C#
|
|
namespace PhysOn.Application.Abstractions;
|
||
|
|
|
||
|
|
public interface IClock
|
||
|
|
{
|
||
|
|
DateTimeOffset UtcNow { get; }
|
||
|
|
}
|