add DateTime extension

This commit is contained in:
Ivan Gutorov 2025-02-16 18:02:02 +04:00
parent bebac80679
commit 542506a77e

View File

@ -0,0 +1,9 @@
namespace TheCyclopsContracts.Extensions;
public static class DateTimeExtensions
{
public static bool IsDateNotOlder(this DateTime date, DateTime olderDate)
{
return date >= olderDate;
}
}