< Summary

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

File(s)

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

#LineLine coverage
 1using SharpHoundCommonLib.Enums;
 2
 3namespace SharpHoundCommonLib.OutputTypes
 4{
 5    public class DomainTrust
 6    {
 27        public string TargetDomainSid { get; set; }
 28        public string TargetDomainName { get; set; }
 29        public bool IsTransitive { get; set; }
 210        public bool SidFilteringEnabled { get; set; }
 111        public bool TGTDelegationEnabled { get; set; }
 112        public long TrustAttributes { get; set; }
 213        public TrustDirection TrustDirection { get; set; }
 214        public TrustType TrustType { get; set; }
 15    }
 16}