School Commit Init

This commit is contained in:
2024-08-31 12:07:21 +03:00
commit 0b130ee18c
2801 changed files with 4720552 additions and 0 deletions
@@ -0,0 +1,22 @@
namespace CacheModule{
public enum Duration
{
OneSecond = 1,
OneMinute = 60,
OneHour = 3600,
OneDay = 86400,
OneWeek = 604800,
OneMonth = 2592000,
OneYear = 31536000,
FiveSeconds = 5,
ThirtySeconds = 30,
ThirtyMinutes = 1800,
SixHours = 21600,
TwelveHours = 43200,
TwoDays = 172800,
ThreeDays = 259200,
TwoWeeks = 1209600,
ThreeMonths = 7776000,
SixMonths = 15552000
}
}