9 lines
220 B
C#
9 lines
220 B
C#
using Elsa.Common;
|
|
|
|
namespace Elsa.ExternalAuthentication.UnitTests.Foundational;
|
|
|
|
internal sealed class TestSystemClock(DateTimeOffset utcNow) : ISystemClock
|
|
{
|
|
public DateTimeOffset UtcNow { get; set; } = utcNow;
|
|
}
|