< Summary

Class:SharpHoundCommonLib.OutputTypes.ResultingGPOChanges
Assembly:SharpHoundCommonLib
File(s):D:\a\SharpHoundCommon\SharpHoundCommon\src\CommonLib\OutputTypes\ResultingGPOChanges.cs
Covered lines:5
Uncovered lines:0
Coverable lines:5
Total lines:13
Line coverage:100% (5 of 5)
Covered branches:0
Total branches:0

File(s)

D:\a\SharpHoundCommon\SharpHoundCommon\src\CommonLib\OutputTypes\ResultingGPOChanges.cs

#LineLine coverage
 1using System;
 2
 3namespace SharpHoundCommonLib.OutputTypes
 4{
 5    public class ResultingGPOChanges
 6    {
 87        public TypedPrincipal[] LocalAdmins { get; set; } = Array.Empty<TypedPrincipal>();
 88        public TypedPrincipal[] RemoteDesktopUsers { get; set; } = Array.Empty<TypedPrincipal>();
 89        public TypedPrincipal[] DcomUsers { get; set; } = Array.Empty<TypedPrincipal>();
 810        public TypedPrincipal[] PSRemoteUsers { get; set; } = Array.Empty<TypedPrincipal>();
 1211        public TypedPrincipal[] AffectedComputers { get; set; } = Array.Empty<TypedPrincipal>();
 12    }
 13}