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:
16
Plugins/Login/LoginConfiguration.cs
Normal file
16
Plugins/Login/LoginConfiguration.cs
Normal 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";
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user