< Summary

Class:SharpHoundCommonLib.OutputTypes.User
Assembly:SharpHoundCommonLib
File(s):D:\a\SharpHoundCommon\SharpHoundCommon\src\CommonLib\OutputTypes\User.cs
Covered lines:0
Uncovered lines:6
Coverable lines:6
Total lines:14
Line coverage:0% (0 of 6)
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>();
 011        public bool UnconstrainedDelegation { get; set; }
 012        public string DomainSID { get; set; }
 13    }
 14}