1
0
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:
RaidMax
2023-04-08 09:43:33 -05:00
parent 0ca3be01d7
commit 293488c839
3 changed files with 37 additions and 19 deletions

View 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";
}