| | 1 | | using SharpHoundCommonLib.Enums; |
| | 2 | |
|
| | 3 | | namespace SharpHoundCommonLib.OutputTypes |
| | 4 | | { |
| | 5 | | public class DomainTrust |
| | 6 | | { |
| 2 | 7 | | public string TargetDomainSid { get; set; } |
| 2 | 8 | | public string TargetDomainName { get; set; } |
| 2 | 9 | | public bool IsTransitive { get; set; } |
| 2 | 10 | | public bool SidFilteringEnabled { get; set; } |
| 1 | 11 | | public bool TGTDelegationEnabled { get; set; } |
| 1 | 12 | | public long TrustAttributes { get; set; } |
| 2 | 13 | | public TrustDirection TrustDirection { get; set; } |
| 2 | 14 | | public TrustType TrustType { get; set; } |
| | 15 | | } |
| | 16 | | } |