mirror of
https://github.com/RaidMax/IW4M-Admin.git
synced 2025-06-10 07:13:58 -05:00
10 lines
234 B
C#
10 lines
234 B
C#
using System.Collections.Concurrent;
|
|
|
|
namespace IW4MAdmin.Plugins.Login;
|
|
|
|
public class LoginStates
|
|
{
|
|
public ConcurrentDictionary<int, bool> AuthorizedClients { get; } = new();
|
|
public const string LoginKey = "IsLoggedIn";
|
|
}
|