Validate movechoice target

This commit is contained in:
2024-12-27 15:53:11 +01:00
parent b4e8ad1cd2
commit b3529fa22f
4 changed files with 60 additions and 4 deletions

View File

@@ -9,10 +9,10 @@ public static class StaticHelpers
/// A function to get the current date and time. This can be replaced in cases where the date and time
/// may not be the same as the system time.
/// </summary>
public static Func<DateTime> DateTimeProvider { get; set; } = () => DateTime.Now;
public static Func<DateTimeOffset> DateTimeProvider { get; set; } = () => DateTimeOffset.Now;
/// <summary>
/// Get the current date and time.
/// </summary>
public static DateTime GetCurrentDateTime() => DateTimeProvider();
public static DateTimeOffset GetCurrentDateTime() => DateTimeProvider();
}