-
-
Notifications
You must be signed in to change notification settings - Fork 49
sharedlibrarycoreconfiguration CommandProperties
RaidMax edited this page May 21, 2023
·
1 revision
Config driven command properties
flowchart LR
classDef interfaceStyle stroke-dasharray: 5 5;
classDef abstractStyle stroke-width:4px
subgraph SharedLibraryCore.Configuration
SharedLibraryCore.Configuration.CommandProperties[[CommandProperties]]
end
| Type | Name | Methods |
|---|---|---|
string |
AliasAlias of this command |
get, set |
bool |
AllowImpersonationIndicates if the command can be run by another user (impersonation) |
get, set |
Permission |
MinimumPermissionSpecifies the minimum permission level needed to execute the |
get, set |
string |
NameSpecifies the command name |
get, set |
Game``[] |
SupportedGamesSpecifies the games supporting the functionality of the command |
get, set |
Config driven command properties
public CommandProperties()public string Name { get; set; }Specifies the command name
public string Alias { get; set; }Alias of this command
public Permission MinimumPermission { get; set; }Specifies the minimum permission level needed to execute the
public bool AllowImpersonation { get; set; }Indicates if the command can be run by another user (impersonation)
public Game SupportedGames { get; set; }Specifies the games supporting the functionality of the command
Generated with ModularDoc