mirror of
https://github.com/carlospolop/privilege-escalation-awesome-scripts-suite.git
synced 2026-01-07 15:19:01 +00:00
17 lines
430 B
C#
17 lines
430 B
C#
using System.Collections.Generic;
|
|
|
|
namespace winPEAS.Info.SystemInfo.PowerShell
|
|
{
|
|
internal class PowerShellSessionSettingsInfo
|
|
{
|
|
public string Plugin { get; }
|
|
public List<PluginAccessInfo> Permissions { get; }
|
|
|
|
public PowerShellSessionSettingsInfo(string plugin, List<PluginAccessInfo> permissions)
|
|
{
|
|
Plugin = plugin;
|
|
Permissions = permissions;
|
|
}
|
|
}
|
|
}
|