1
0
mirror of https://github.com/RaidMax/IW4M-Admin.git synced 2025-06-14 17:18:32 -05:00

update login plugin to IPluginV2

This commit is contained in:
RaidMax
2023-02-11 20:46:57 -06:00
parent 52cee026c1
commit 44e40aefee
3 changed files with 76 additions and 75 deletions

View File

@ -0,0 +1,16 @@
using SharedLibraryCore.Interfaces;
namespace IW4MAdmin.Plugins.Login
{
public class LoginConfiguration : IBaseConfiguration
{
public bool RequirePrivilegedClientLogin { get; set; }
public IBaseConfiguration Generate()
{
return this;
}
public string Name() => "LoginConfiguration";
}
}