this took soo long, but here you are wells

This commit is contained in:
rfi
2024-02-22 16:11:23 +07:00
parent 5d39e1c6be
commit db93c8f49d
18 changed files with 1210 additions and 17 deletions

View File

@@ -10,5 +10,10 @@
int offset = (dayOfMonth + (int)firstDayOfWeek - 1) / 7;
return offset + 1;
}
public static double GetSecondsPassed(this DateTime date)
{
return (DateTime.Now - date).TotalSeconds;
}
}
}