mirror of
https://github.com/peass-ng/PEASS-ng.git
synced 2025-12-29 06:05:43 -08: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;
|
|
}
|
|
}
|
|
}
|