| | 1 | | using System; |
| | 2 | | using System.Collections.Generic; |
| | 3 | |
|
| | 4 | | namespace SharpHoundCommonLib.OutputTypes |
| | 5 | | { |
| | 6 | | /// <summary> |
| | 7 | | /// Represents a base JSON object which other objects will inherit from. |
| | 8 | | /// </summary> |
| | 9 | | public class OutputBase |
| | 10 | | { |
| 0 | 11 | | public Dictionary<string, object> Properties = new(); |
| 0 | 12 | | public ACE[] Aces { get; set; } = Array.Empty<ACE>(); |
| 0 | 13 | | public string ObjectIdentifier { get; set; } |
| 0 | 14 | | public bool IsDeleted { get; set; } |
| 0 | 15 | | public bool IsACLProtected { get; set; } |
| 0 | 16 | | public TypedPrincipal ContainedBy { get; set; } |
| | 17 | | } |
| | 18 | | } |