mirror of
https://github.com/RaidMax/IW4M-Admin.git
synced 2025-06-25 22:50:27 -05:00
improve login plugin structure and fix load issue
This commit is contained in:
9
Plugins/Login/LoginStates.cs
Normal file
9
Plugins/Login/LoginStates.cs
Normal file
@ -0,0 +1,9 @@
|
||||
using System.Collections.Concurrent;
|
||||
|
||||
namespace IW4MAdmin.Plugins.Login;
|
||||
|
||||
public class LoginStates
|
||||
{
|
||||
public ConcurrentDictionary<int, bool> AuthorizedClients { get; } = new();
|
||||
public const string LoginKey = "IsLoggedIn";
|
||||
}
|
Reference in New Issue
Block a user