mirror of
https://github.com/RaidMax/IW4M-Admin.git
synced 2025-06-07 21:58:06 -05:00
29 lines
430 B
C#
29 lines
430 B
C#
namespace WebfrontCore.Permissions;
|
|
|
|
public enum WebfrontEntity
|
|
{
|
|
ClientIPAddress,
|
|
ClientGuid,
|
|
ClientLevel,
|
|
MetaAliasUpdate,
|
|
Penalty,
|
|
PrivilegedClientsPage,
|
|
HelpPage,
|
|
ConsolePage,
|
|
ConfigurationPage,
|
|
AuditPage,
|
|
RecentPlayersPage,
|
|
ProfilePage,
|
|
AdminMenu,
|
|
ClientNote,
|
|
Interaction,
|
|
AdvancedSearch
|
|
}
|
|
|
|
public enum WebfrontPermission
|
|
{
|
|
Read,
|
|
Write,
|
|
Delete
|
|
}
|