16 lines
362 B
C#
16 lines
362 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Labaratory
|
|
{
|
|
public static class SessionManager
|
|
{
|
|
public static string CurrentRole { get; set; }
|
|
public static DateTime? BlockUntil { get; set; }
|
|
public static bool NeedsCaptcha { get; set; }
|
|
}
|
|
}
|