Duration in minutes

This commit is contained in:
Valentin Barat
2024-01-31 21:45:42 +01:00
parent 60ebb698a3
commit a266f776a8

View File

@@ -8,11 +8,11 @@ namespace CS2_SimpleAdmin.Menus
{
public static Tuple<string, int>[] _durations = new[]
{
new Tuple<string, int>("1 minute", 60),
new Tuple<string, int>("5 minutes", 60 * 5),
new Tuple<string, int>("15 minutes", 60 * 15),
new Tuple<string, int>("1 hour", 60 * 60),
new Tuple<string, int>("1 day", 60 * 60 * 24),
new Tuple<string, int>("1 minute", 1),
new Tuple<string, int>("5 minutes", 5),
new Tuple<string, int>("15 minutes", 15),
new Tuple<string, int>("1 hour", 60),
new Tuple<string, int>("1 day", 60 * 24),
new Tuple<string, int>("Permanent", 0)
};