Files
BabyVideoService/Http/Extensions/DateTimeExtensions.cs
2026-02-08 16:58:32 +08:00

24 lines
561 B
C#

namespace ACBuildService;
public static class DateTimeExtensions
{
public static bool IsSameDay(this DateTime date1, DateTime date2)
{
return date1.Date == date2.Date;
}
public static bool IsToday(this DateTime date)
{
return date.Date == DateTime.Today;
}
public static bool IsYesterday(this DateTime date)
{
return date.Date == DateTime.Today.AddDays(-1);
}
public static bool IsTomorrow(this DateTime date)
{
return date.Date == DateTime.Today.AddDays(1);
}
}