mirror of
https://github.com/roflmuffin/CounterStrikeSharp.git
synced 2025-12-07 08:26:34 -08:00
17 lines
405 B
C#
17 lines
405 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace CounterStrikeSharp.API.Modules.Admin
|
|
{
|
|
public class PermissionCharacters
|
|
{
|
|
// Example: "#css/admin"
|
|
public const char GroupPermissionChar = '#';
|
|
// Example: "@css/manipulate_players"
|
|
public const char UserPermissionChar = '@';
|
|
}
|
|
}
|