| | 1 | | using System; |
| | 2 | |
|
| | 3 | | namespace SharpHoundCommonLib.OutputTypes |
| | 4 | | { |
| | 5 | | public class User : OutputBase |
| | 6 | | { |
| 0 | 7 | | public TypedPrincipal[] AllowedToDelegate { get; set; } = Array.Empty<TypedPrincipal>(); |
| 0 | 8 | | public string PrimaryGroupSID { get; set; } |
| 0 | 9 | | public TypedPrincipal[] HasSIDHistory { get; set; } = Array.Empty<TypedPrincipal>(); |
| 0 | 10 | | public SPNPrivilege[] SPNTargets { get; set; } = Array.Empty<SPNPrivilege>(); |
| 0 | 11 | | public bool UnconstrainedDelegation { get; set; } |
| 0 | 12 | | public string DomainSID { get; set; } |
| | 13 | | } |
| | 14 | | } |