first commit

This commit is contained in:
2025-08-01 14:10:44 -04:00
commit cf32cfcbcd
149 changed files with 80416 additions and 0 deletions
+26
View File
@@ -0,0 +1,26 @@
namespace Web
{
public class LabelHelper
{
public static string GetOrderClass(int pick)
{
switch (pick)
{
case 1:
return "first-pick";
case 2:
return "second-pick";
case 3:
return "third-pick";
case 4:
return "fourth-pick";
case 5:
return "fifth-pick";
case 6:
return "sixth-pick";
default:
return "non-pick";
}
}
}
}