Files
CS2-SimpleAdmin/Modules/CS2-SimpleAdmin_StealthModule/PluginConfig.cs
Dawid Bepierszcz 5701455de0 Refactor database layer and add module/plugin improvements
Reworked the database layer to support both MySQL and SQLite via new provider classes and migration scripts for each backend. Updated the build workflow to support building and packaging additional modules, including StealthModule and BanSoundModule, and improved artifact handling. Refactored command registration to allow dynamic registration/unregistration and improved API event handling. Updated dependencies, project structure, and configuration checks for better reliability and extensibility. Added new language files, updated versioning, and removed obsolete files.

**⚠️ Warning: SQLite support is currently experimental.
Using this version requires reconfiguration of your database settings!
Plugin now uses UTC time. Please adjust your configurations accordingly!
**
2025-10-03 01:37:03 +02:00

11 lines
347 B
C#

using CounterStrikeSharp.API.Core;
namespace CS2_SimpleAdmin_StealthModule;
public class PluginConfig : IBasePluginConfig
{
public int Version { get; set; } = 1;
public List<string> Permissions { get; set; } = ["@css/ban"];
public bool BlockStatusCommand { get; set; } = true;
public bool HideAdminsOnJoin { get; set; } = true;
}