< Summary

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

File(s)

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

#LineLine coverage
 1using System;
 2
 3namespace SharpHoundCommonLib.OutputTypes
 4{
 5    public class User : OutputBase
 6    {
 07        public TypedPrincipal[] AllowedToDelegate { get; set; } = Array.Empty<TypedPrincipal>();
 08        public string PrimaryGroupSID { get; set; }
 09        public TypedPrincipal[] HasSIDHistory { get; set; } = Array.Empty<TypedPrincipal>();
 010        public SPNPrivilege[] SPNTargets { get; set; } = Array.Empty<SPNPrivilege>();
 11    }
 12}