| | 1 | | using System; |
| | 2 | |
|
| | 3 | | namespace SharpHoundCommonLib.OutputTypes |
| | 4 | | { |
| | 5 | | public class ResultingGPOChanges |
| | 6 | | { |
| 8 | 7 | | public TypedPrincipal[] LocalAdmins { get; set; } = Array.Empty<TypedPrincipal>(); |
| 8 | 8 | | public TypedPrincipal[] RemoteDesktopUsers { get; set; } = Array.Empty<TypedPrincipal>(); |
| 8 | 9 | | public TypedPrincipal[] DcomUsers { get; set; } = Array.Empty<TypedPrincipal>(); |
| 8 | 10 | | public TypedPrincipal[] PSRemoteUsers { get; set; } = Array.Empty<TypedPrincipal>(); |
| 12 | 11 | | public TypedPrincipal[] AffectedComputers { get; set; } = Array.Empty<TypedPrincipal>(); |
| | 12 | | } |
| | 13 | | } |